mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
16 lines
371 B
Bash
Executable File
16 lines
371 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/internal-functions"
|
|
|
|
cmd-ps-restartall() {
|
|
declare desc="restarts all apps via command line"
|
|
declare cmd="ps:restartall"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
fn-ps-parallel-cmd "restart"
|
|
}
|
|
|
|
cmd-ps-restartall "$@"
|