820f9f2977
Improves shell script quoting, and adds set -u set -o pipefail
21 lines
348 B
Bash
Executable File
21 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Simple script to stand up a development environment for an OpenStack
|
|
# controller in a Vagrant VM using kayobe. This should be executed from within
|
|
# the VM.
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${PARENT}/functions"
|
|
|
|
|
|
function main {
|
|
config_init
|
|
overcloud_deploy
|
|
}
|
|
|
|
main
|