diff --git a/plugins/00_dokku-standard/commands b/plugins/00_dokku-standard/commands index 8422256e8cc..5e7a4b9396d 100755 --- a/plugins/00_dokku-standard/commands +++ b/plugins/00_dokku-standard/commands @@ -6,7 +6,7 @@ case "$1" in help|ls:help|run:help|trace:help|url:help|urls:help|version:help) [[ $(echo "$1" | sed '/.*:help/!d') ]] && help_topic="${1%\:help}" help_content_func () { - declare desc="return help_content string" + declare desc="return standard plugin help content" cat< , Run a command in the environment of an application diff --git a/plugins/20_events/commands b/plugins/20_events/commands index 7bb735bfa13..fe67398dec2 100755 --- a/plugins/20_events/commands +++ b/plugins/20_events/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | events:help) help_content_func () { - declare desc="return help_content string" + declare desc="return events plugin help content" cat<, Create a new app diff --git a/plugins/certs/commands b/plugins/certs/commands index c0fe3c5265f..ed52cee5e6e 100755 --- a/plugins/certs/commands +++ b/plugins/certs/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | certs:help) help_content_func () { - declare desc="return help_content string" + declare desc="return certs plugin help content" cat< CRT KEY, Add an ssl endpoint to an app. Can also import from a tarball on stdin certs:chain CRT [CRT ...], [NOT IMPLEMENTED] Print the ordered and complete chain for the given certificate. diff --git a/plugins/checks/commands b/plugins/checks/commands index efa774895f5..dfe480c2187 100755 --- a/plugins/checks/commands +++ b/plugins/checks/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | checks:help) help_content_func () { - declare desc="return help_content string" + declare desc="return checks plugin help content" cat<, Show zero-downtime status checks:enable , Enable zero-downtime checks diff --git a/plugins/config/commands b/plugins/config/commands index 532d887b46c..305cb27ac95 100755 --- a/plugins/config/commands +++ b/plugins/config/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | config:help) help_content_func () { - declare desc="return help_content string" + declare desc="return config plugin help content" cat<|--global), Display all global or app-specific config vars config:get (|--global) KEY, Display a global or app-specific config value diff --git a/plugins/docker-options/commands b/plugins/docker-options/commands index 65303d197a9..f3fd00ccc3c 100755 --- a/plugins/docker-options/commands +++ b/plugins/docker-options/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | docker-options:help) help_content_func () { - declare desc="return help_content string" + declare desc="return docker-options plugin help content" cat< [phase(s)], Display app's Docker options for all phases (or comma separated phase list) docker-options:add OPTION, Add Docker option to app for phase (comma separated phase list) diff --git a/plugins/domains/commands b/plugins/domains/commands index abb2aa0628f..42ce3a8c32c 100755 --- a/plugins/domains/commands +++ b/plugins/domains/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | domains:help) help_content_func () { - declare desc="return help_content string" + declare desc="return domains plugin help content" cat<], List domains domains:add DOMAIN, Add a domain to app diff --git a/plugins/enter/commands b/plugins/enter/commands index 685ba63f8e4..b006d6b5cc5 100755 --- a/plugins/enter/commands +++ b/plugins/enter/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | enter:help) help_content_func () { - declare desc="return help_content string" + declare desc="return enter plugin help content" cat< [ || --container-id ], Connect to a specific app container help_content diff --git a/plugins/nginx-vhosts/commands b/plugins/nginx-vhosts/commands index 7c3f6cbd88f..b08f689569f 100755 --- a/plugins/nginx-vhosts/commands +++ b/plugins/nginx-vhosts/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | nginx:help) help_content_func () { - declare desc="return help_content string" + declare desc="return nginx plugin help content" cat<, (Re)builds nginx config for given app nginx:access-logs [-t], Show the nginx access logs for an application (-t follows) diff --git a/plugins/plugin/commands b/plugins/plugin/commands index c2c16ac62bd..a5b4dff7891 100755 --- a/plugins/plugin/commands +++ b/plugins/plugin/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | plugin:help) help_content_func () { - declare desc="return help_content string" + declare desc="return plugin plugin help content" cat<, Show proxy for app proxy:enable , Enable proxy for app diff --git a/plugins/ps/commands b/plugins/ps/commands index 8ed02d044cc..1d46d500f6e 100755 --- a/plugins/ps/commands +++ b/plugins/ps/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | ps:help) help_content_func () { - declare desc="return help_content string" + declare desc="return ps plugin help content" cat<, List processes running in app container(s) ps:scale [ = [=]], Get/Set how many instances of a given process to run diff --git a/plugins/shell/commands b/plugins/shell/commands index 341904954fc..d783b20a573 100755 --- a/plugins/shell/commands +++ b/plugins/shell/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | shell:help) help_content_func () { - declare desc="return help_content string" + declare desc="return shell plugin help content" cat<, List bind mounts for app's container(s) (host:container) storage:mount , Create a new bind mount diff --git a/plugins/tags/commands b/plugins/tags/commands index 281155bd9b3..1f2f8c02152 100755 --- a/plugins/tags/commands +++ b/plugins/tags/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | tags:help) help_content_func () { - declare desc="return help_content string" + declare desc="return tags plugin help content" cat<, List all app image tags tags:create , Add tag to latest running app image diff --git a/plugins/tar/commands b/plugins/tar/commands index 8a197cce036..50fd0b942e7 100755 --- a/plugins/tar/commands +++ b/plugins/tar/commands @@ -5,7 +5,7 @@ set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | tar:help) help_content_func () { - declare desc="return help_content string" + declare desc="return tar plugin help content" cat<, Reads an tarball containing the app from stdin tar:from , Loads an app tarball from url.