This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-playbook/commands

36 lines
898 B
Plaintext
Raw Normal View History

2020-03-21 22:28:04 +00:00
#!/usr/bin/env bash
[[ " help ansible-playbook:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
case "$1" in
help | ansible-playbook:help | ansible-playbook)
help_content_func() {
declare desc="return ansible-playbook plugin help content"
cat<<help_content
ansible-playbook:add-vault-password, Insert new vault password for encrypt/decrypt of passwords
help_content
}
if [[ $1 = "ansible-playbook:help" ]]; then
echo -e 'Usage: dokku ansible-playbook[:COMMAND]'
echo ''
echo 'Run ansible playbooks during deployment'
echo ''
elif [[ $(ps -o command= $PPID) == *"--all"* ]]; then
help_content_func
else
cat<<help_desc
ansible-playbook, Run ansible playbooks during deployment
help_desc
fi
;;
*)
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac