mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
33 lines
816 B
Bash
Executable File
33 lines
816 B
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help checks:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | checks:help)
|
|
help_content_func () {
|
|
declare desc="return checks plugin help content"
|
|
cat<<help_content
|
|
checks <app>, Show zero-downtime status
|
|
checks:enable <app>, Enable zero-downtime checks
|
|
checks:disable <app>, Disable zero-downtime checks
|
|
help_content
|
|
}
|
|
|
|
if [[ $1 = "checks:help" ]] ; then
|
|
echo -e 'Usage: dokku checks[:COMAND]'
|
|
echo ''
|
|
echo 'Manage zero-downtime checks.'
|
|
echo ''
|
|
echo 'Additional commands:'
|
|
help_content_func | sort | column -c2 -t -s,
|
|
else
|
|
help_content_func
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|