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:
reynir 2022-11-28 14:27:49 +00:00 committed by valberg
parent 59dae865c5
commit bd9c134e07
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,13 @@
#!/bin/sh #!/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" BASE_CMD="ansible-playbook playbook.yml --ask-vault-pass"
if [ "$1" = "--vagrant" ]; then if [ "$1" = "--vagrant" ]; then
@ -30,7 +38,7 @@ else
$BASE_CMD --tags base_only $BASE_CMD --tags base_only
;; ;;
*) *)
echo >&2 "Command \"$1\" not found!" usage
exit 1 exit 1
;; ;;
esac esac