upgrade: With `skip_puppet`, show what puppet changes are outstanding.

This prevents puppet changes from building up over time.
This commit is contained in:
Alex Vandiver 2020-07-31 17:10:27 -07:00 committed by Tim Abbott
parent c1923e19b0
commit 519b1e9b4d
1 changed files with 4 additions and 0 deletions

View File

@ -280,3 +280,7 @@ if not args.skip_purge_old_deployments:
subprocess.check_call(["./scripts/purge-old-deployments"])
else:
logging.info("Skipping purging old deployments.")
if args.skip_puppet:
logging.info("Showing un-applied puppet changes:")
subprocess.check_call(["./scripts/zulip-puppet-apply", "--noop", "--show_diff"])