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/subcommands/default

17 lines
378 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
ansible_default_cmd() {
echo -e 'Usage: dokku ansible[:COMMAND]'
echo ''
echo 'Run ansible playbooks during deployment'
echo ''
echo 'Commands:'
cat<<help_content
ansible:vault-pass, Insert new vault password for encrypt/decrypt of passwords
help_content
}
ansible_default_cmd "$@"