Initial commit.

This commit is contained in:
Greyson Parrelli
2026-07-15 07:49:11 -04:00
commit a3f0f8a1be
37 changed files with 2825 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/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 "$@"