diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-17 17:49:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-17 17:49:11 -0300 |
commit | b93dc21e850e1914a7377378604acf9ca8a14713 (patch) | |
tree | 276f29cc770459d070deaea3d176030988188ffd | |
parent | 4e54b77b0daf99148811119ffd7842ea509ed88d (diff) | |
download | puppet-backup-b93dc21e850e1914a7377378604acf9ca8a14713.tar.gz puppet-backup-b93dc21e850e1914a7377378604acf9ca8a14713.tar.bz2 |
Rsync backup log files
-rw-r--r-- | files/logrotate.d/backup | 6 | ||||
-rw-r--r-- | manifests/init.pp | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/files/logrotate.d/backup b/files/logrotate.d/backup new file mode 100644 index 0000000..4bdd64f --- /dev/null +++ b/files/logrotate.d/backup @@ -0,0 +1,6 @@ +/var/log/backup/*.log { + rotate 6 + monthly + compress + missingok +} diff --git a/manifests/init.pp b/manifests/init.pp index 48fe185..556b0c7 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -64,6 +64,21 @@ class backup { mode => 0755, } + file { "/var/log/backup": + ensure => directory, + owner => root, + group => root, + mode => 0755, + } + + file { "/etc/logrotate.d/backup": + ensure => present, + owner => root, + group => root, + mode => 0644, + source => "puppet://$server/modules/backup/logrotate.d/backup", + } + # rdiff-check script file { "/usr/local/sbin/rdiff-check": content => template('backup/rdiff-check.sh.erb'), @@ -128,6 +143,7 @@ class backup { keepweekly => '4', keepmonthly => '3', format => 'long', + log => "/var/log/backup/rsync-$title.$domain.log", # [source] include => $backup_include_encrypted, exclude => $backup_exclude_encrypted, |