system_update.sh: Bugfix

This commit fixes a broken system_update.sh that did not properly
rebuild the resolver configuration.
This commit is contained in:
Tom Wiesing 2022-08-01 17:11:00 +02:00
parent cb34e1144f
commit 5170cc5dda
No known key found for this signature in database

View file

@ -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. "