From 5170cc5ddaaecdbaadd011c52af4a5706517927d Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Mon, 1 Aug 2022 17:11:00 +0200 Subject: [PATCH] system_update.sh: Bugfix This commit fixes a broken system_update.sh that did not properly rebuild the resolver configuration. --- distillery/system_update.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/distillery/system_update.sh b/distillery/system_update.sh index 8b5727e..44d4cf9 100755 --- a/distillery/system_update.sh +++ b/distillery/system_update.sh @@ -12,9 +12,6 @@ update_stack "$DEPLOY_WEB_DIR" log_info "=> Rebuilding and restarting 'self' stack" update_stack "$DEPLOY_SELF_DIR" -log_info "=> Rebuilding and restarting 'resolver' stack" -update_stack "$DEPLOY_RESOLVER_DIR" - # build and start the ssh server log_info "=> Rebuilding and restarting 'ssh' stack" update_stack "$DEPLOY_SSH_DIR" @@ -28,6 +25,10 @@ log_info "=> Rebuilding and restarting 'sql' stack" update_stack "$DEPLOY_SQL_DIR" log_info " => Updating Prefix Config" +cd "$DIR" bash update_prefix_config.sh +log_info "=> Rebuilding and restarting 'resolver' stack" +update_stack "$DEPLOY_RESOLVER_DIR" + log_info "=> System up-to-date. " \ No newline at end of file