2017-10-21 09:33:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-06 12:06:00 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2017-10-21 09:33:34 +01:00
|
|
|
|
|
|
|
# Simple script to stand up a development environment for a seed VM using
|
|
|
|
# kayobe. This should be executed from the hypervisor.
|
|
|
|
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
2018-02-06 12:06:00 +00:00
|
|
|
source "${PARENT}/functions"
|
2017-10-21 09:33:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
function main {
|
|
|
|
config_init
|
|
|
|
seed_deploy
|
|
|
|
}
|
|
|
|
|
|
|
|
main
|