diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 556b0c7..112cdf2 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -99,6 +99,26 @@ class backup { require => File['/usr/local/sbin/rdiff-check'], } + # rsync-check script + file { "/usr/local/sbin/rsync-check": + content => template('backup/rsync-check.sh.erb'), + owner => root, + group => root, + mode => 0755, + ensure => present, + } + + # check rsync-backups once a week + cron { "rsync_check": + command => "/usr/local/sbin/rsync-check", + user => root, + hour => "0", + minute => "0", + weekday => "0", + ensure => present, + require => File['/usr/local/sbin/rsync-check'], + } + # we have to keep that until squeeze turns stable file { "/usr/share/backupninja/rsync": ensure => present, |