diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 7ce4043..236751a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -129,6 +129,15 @@ class backup { source => "puppet://$server/modules/backup/handlers/rsync", } + # sync-backups script + file { "/usr/local/sbin/sync-backups": + owner => root, + group => root, + mode => 0755, + ensure => present, + source => "puppet://$server/modules/backup/sync-backups", + } + # default backupninja::rdiff configuration define rdiff($port = '22', $ensure = present, $installkey = true) { backupninja::rdiff { "rdiff-$title.$domain": |