2018-12-23 23:55:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
DIR=$(dirname "$0")
|
|
|
|
PLAYBOOK_DIR=$DIR/..
|
|
|
|
|
|
|
|
header() {
|
|
|
|
clear
|
2020-01-09 12:53:47 +00:00
|
|
|
cat <<"EndOfMessage"
|
2018-12-28 16:09:42 +00:00
|
|
|
._____. .__
|
|
|
|
_____ ____ _____|__\_ |__ | | ____ ____ _____ ______
|
|
|
|
\__ \ / \ / ___/ || __ \| | _/ __ \ ______ / \\__ \ / ___/
|
|
|
|
/ __ \| | \\___ \| || \_\ \ |_\ ___/ /_____/ | | \/ __ \_\___ \
|
|
|
|
(____ /___| /____ >__||___ /____/\___ > |___| (____ /____ >
|
|
|
|
\/ \/ \/ \/ \/ \/ \/ \/
|
|
|
|
a n s i b l e - n a s https://github.com/davestephens/ansible-nas
|
|
|
|
|
2018-12-23 23:55:28 +00:00
|
|
|
EndOfMessage
|
|
|
|
sleep 5
|
|
|
|
}
|
|
|
|
|
2020-01-09 12:53:47 +00:00
|
|
|
log() {
|
2018-12-23 23:55:28 +00:00
|
|
|
printf "${TIME_FORMAT} %b\n" "$*";
|
|
|
|
}
|
|
|
|
|
|
|
|
fatal_error() {
|
2020-01-09 12:53:47 +00:00
|
|
|
printf "${TIME_FORMAT} \e[41mERROR:\033[0m %b\n" "$*" >&2;
|
2018-12-23 23:55:28 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
test_needs() {
|
|
|
|
command -v $1 >/dev/null 2>&1 || fatal_error "Testing Ansible-NAS requires $1 but it's not installed. Please install it and try again."
|
|
|
|
}
|
|
|
|
|
|
|
|
testing_init() {
|
|
|
|
log "Checking Vagrant installation"
|
|
|
|
test_needs vagrant
|
|
|
|
}
|
|
|
|
|
|
|
|
header
|
|
|
|
testing_init
|
|
|
|
|
|
|
|
log "Starting Vagrant and running playbook"
|
2020-01-09 12:53:47 +00:00
|
|
|
while getopts ":p" opt; do
|
|
|
|
case $opt in
|
|
|
|
p)
|
|
|
|
vagrant up --provision
|
|
|
|
;;
|
|
|
|
\?)
|
|
|
|
vagrant up
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
log "Vagrant up completed, you can connect to the VM at http://172.30.1.5:10080. When you've finished testing, run 'vagrant destroy' to kill the VM."
|