Fix command name

This commit is contained in:
Luke Murphy 2020-03-22 00:50:52 +01:00
parent a7e0a2a1bf
commit 10ef4daecc
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ Ansible uses the [vault](https://docs.ansible.com/ansible/latest/user_guide/vaul
To get started with enabling this, you should generate a vault password for your self and run the following on your Dokku host.
```bash
$ dokku ansible-playbook:add-vault-password
$ dokku ansible-playbook:vault-pass
```
Then you can start to encrypt your passwords on your local machine with the following.

View File

@ -1,22 +1,22 @@
#!/usr/bin/env bash
[[ " help ansible:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
[[ " help ansible-playbook:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
case "$1" in
help | ansible:help)
help | ansible-playbook:help)
help_content_func() {
#shellcheck disable=SC2034
declare desc="return ansible-playbook plugin help content"
cat<<help_content
ansible:vault-pass, Insert new vault password for encrypt/decrypt of passwords
ansible-playbook:vault-pass, Insert new vault password for encrypt/decrypt of passwords
help_content
}
if [[ $1 = "ansible:help" ]]; then
echo -e 'Usage: dokku ansible:COMMAND'
if [[ $1 = "ansible-playbook:help" ]]; then
echo -e 'Usage: dokku ansible-playbook:COMMAND'
echo ''
echo 'Run ansible playbooks during deployment'
echo ''
@ -26,7 +26,7 @@ help_content
help_content_func
else
cat<<help_desc
ansible, Run ansible playbooks during deployment
ansible-playbook, Run ansible playbooks during deployment
help_desc
fi
;;