14 lines
339 B
Bash
Executable File
14 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$(dirname "$(dirname "${BASH_SOURCE[0]}")")/functions"
|
|
|
|
cmd-google-auth-restart() {
|
|
declare desc="restart the shared auth service container"
|
|
local cmd="google-auth:restart"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
fn-ga-service-start
|
|
}
|
|
|
|
cmd-google-auth-restart "$@"
|