mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
14 lines
360 B
Bash
Executable File
14 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/ps/functions"
|
|
|
|
ps_stop_cmd() {
|
|
local desc="stops app via command line"
|
|
local cmd="ps:stop"
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify an app to run the command on"
|
|
ps_stop "$2"
|
|
}
|
|
|
|
ps_stop_cmd "$@"
|