deploy.sh: print usage message (#130)
Co-authored-by: reynir <data.coop@reynir.dk> Co-committed-by: reynir <data.coop@reynir.dk>
This commit is contained in:
parent
59dae865c5
commit
bd9c134e07
10
deploy.sh
10
deploy.sh
|
@ -1,5 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
usage () {
|
||||
{
|
||||
echo "Usage: $0 [--vagrant]"
|
||||
echo "Usage: $0 [--vagrant] base"
|
||||
echo "Usage: $0 [--vagrant] services [SERVICE]"
|
||||
} >&2
|
||||
}
|
||||
|
||||
BASE_CMD="ansible-playbook playbook.yml --ask-vault-pass"
|
||||
|
||||
if [ "$1" = "--vagrant" ]; then
|
||||
|
@ -30,7 +38,7 @@ else
|
|||
$BASE_CMD --tags base_only
|
||||
;;
|
||||
*)
|
||||
echo >&2 "Command \"$1\" not found!"
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue