summaryrefslogtreecommitdiff
path: root/manifests/rrsync.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rrsync.pp')
-rw-r--r--manifests/rrsync.pp11
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;
+ }
+}