puppet: Make restart-server cron use standard day-of-week.

Using 7 makes this fail when run under the Sentry cron wrapper.

(cherry picked from commit 9497f23307)
This commit is contained in:
Alex Vandiver
2024-08-30 18:54:41 +00:00
committed by Tim Abbott
parent aeec61476c
commit e827b2acf8

View File

@@ -69,7 +69,7 @@ class zulip::profile::app_frontend {
zulip::cron { 'restart-zulip':
hour => '6',
minute => '0',
dow => '7',
dow => '0',
command => '/home/zulip/deployments/current/scripts/restart-server --fill-cache',
}
}