kayobe/dev/seed-hypervisor-deploy.sh
Mark Goddard 820f9f2977 Address dev environment review comments
Improves shell script quoting, and adds

set -u
set -o pipefail
2018-02-06 14:08:45 +00:00

20 lines
331 B
Bash
Executable File

#!/bin/bash
set -eu
set -o pipefail
# Simple script to stand up a development environment for a seed hypervisor
# using kayobe. This should be executed from the hypervisor.
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${PARENT}/functions"
function main {
config_init
seed_hypervisor_deploy
}
main