mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
15 lines
354 B
Plaintext
15 lines
354 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
||
|
|
set -eo pipefail
|
||
|
|
[[ $DOKKU_TRACE ]] && set -x
|
||
|
|
|
||
|
|
trigger-caddy-vhosts-post-delete() {
|
||
|
|
declare desc="caddy-vhosts post-delete trigger"
|
||
|
|
declare trigger="post-delete"
|
||
|
|
declare APP="$1"
|
||
|
|
|
||
|
|
fn-plugin-property-destroy "caddy" "$APP"
|
||
|
|
}
|
||
|
|
|
||
|
|
trigger-caddy-vhosts-post-delete "$@"
|