mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
15 lines
364 B
Plaintext
15 lines
364 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
||
|
|
set -eo pipefail
|
||
|
|
[[ $DOKKU_TRACE ]] && set -x
|
||
|
|
|
||
|
|
trigger-haproxy-vhosts-post-create() {
|
||
|
|
declare desc="haproxy-vhosts post-create trigger"
|
||
|
|
declare trigger="post-create"
|
||
|
|
declare APP="$1"
|
||
|
|
|
||
|
|
fn-plugin-property-setup-app "haproxy" "$APP"
|
||
|
|
}
|
||
|
|
|
||
|
|
trigger-haproxy-vhosts-post-create "$@"
|