From 10ef4daecc1c4ad8e93116327dc900ab413c6c43 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 22 Mar 2020 00:50:52 +0100 Subject: [PATCH] Fix command name --- README.md | 2 +- commands | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 52b9f9e..e605aef 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/commands b/commands index 26b0a91..38c8f2d 100755 --- a/commands +++ b/commands @@ -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<