Merge pull request #1781 from jvanbaarsen/add-post-config-update-hook

Add post config update hook
This commit is contained in:
Michael Hobbs
2015-12-16 14:00:01 -08:00

View File

@@ -187,6 +187,7 @@ ${var}"
config_styled_hash "$ENV_ADD" " "
config_write "$ENV_TEMP"
plugn trigger post-config-update $APP "set" "$@"
fi
if [[ "$DOKKU_CONFIG_RESTART" == "true" ]]; then
@@ -218,6 +219,8 @@ config_unset() {
[[ "$var" == "NO_VHOST" ]] && config_set --no-restart $APP NO_VHOST=0 && DOKKU_CONFIG_RESTART=true
done
plugn trigger post-config-update $APP "unset" "$@"
if [[ "$DOKKU_CONFIG_RESTART" == "true" ]]; then
dokku_log_info1 "Restarting app $APP"
dokku ps:restart $APP