diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/rrsync.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rrsync.pp b/manifests/rrsync.pp new file mode 100644 index 0000000..a27b8ce --- /dev/null +++ b/manifests/rrsync.pp @@ -0,0 +1,11 @@ +# manifests/rrsync.pp + +class rsync::rrsync { + include rsync::client + + file{'/usr/local/bin/rrsync': + source => "puppet://$server/rsync/rrsync/rrsync", + require => Package['rsync'], + owner => root, group => 0, mode => 0755; + } +} |