diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-31 15:38:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-31 15:38:59 -0300 |
commit | 3e2b07f09b0cde2fbc2a7a7c2cfcf88452945583 (patch) | |
tree | 96ebd2b0d63bdcb68e02732f0cfe05f6d0b9f969 /manifests | |
parent | 21723c5e2a0426eef1e87d65fd356505f0046648 (diff) | |
download | puppet-backup-3e2b07f09b0cde2fbc2a7a7c2cfcf88452945583.tar.gz puppet-backup-3e2b07f09b0cde2fbc2a7a7c2cfcf88452945583.tar.bz2 |
Adding sync-media-expor and sync-media-init
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 90882a9..07031de 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -146,6 +146,24 @@ class backup( source => "puppet:///modules/backup/sync-media", } + # sync-media-export script + file { "/usr/local/sbin/sync-media-export": + owner => root, + group => root, + mode => 0755, + ensure => present, + source => "puppet:///modules/backup/sync-media-export", + } + + # sync-media-init script + file { "/usr/local/sbin/sync-media-init": + owner => root, + group => root, + mode => 0755, + ensure => present, + source => "puppet:///modules/backup/sync-media-init", + } + # mount-media script file { "/usr/local/sbin/mount-media": owner => root, |