wal-g: Write out a logfile.

Otherwise, this output goes into `/var/spool/mail/postgres`, which is
not terribly helpful.  We do not write to `/var/log/zulip` because the
backup runs as the `postgres` user, and `/var/log/zulip` is owned by
zulip and chmod 750.
This commit is contained in:
Alex Vandiver 2023-04-26 21:24:16 +00:00 committed by Tim Abbott
parent 67f3cb67c5
commit 2f4775ba68
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,3 @@
PATH=/bin:/usr/bin:/usr/local/bin
0 2 * * * postgres /usr/local/bin/pg_backup_and_purge
0 2 * * * postgres /usr/local/bin/pg_backup_and_purge >/var/log/pg_backup_and_purge.log 2>&1

View File

@ -4,6 +4,12 @@ class zulip::postgresql_backups {
include zulip::postgresql_common
include zulip::wal_g
file { '/var/log/pg_backup_and_purge.log':
ensure => file,
owner => 'postgres',
group => 'postgres',
mode => '0644',
}
file { '/usr/local/bin/pg_backup_and_purge':
ensure => file,
owner => 'root',
@ -38,7 +44,10 @@ class zulip::postgresql_backups {
group => 'root',
mode => '0644',
source => 'puppet:///modules/zulip/cron.d/pg-backup-and-purge',
require => File['/usr/local/bin/pg_backup_and_purge'],
require => [
File['/var/log/pg_backup_and_purge.log'],
File['/usr/local/bin/pg_backup_and_purge'],
],
}
file { "${zulip::common::nagios_plugins_dir}/zulip_postgresql_backups":