summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-10-24 18:28:06 +0000
committermh <mh@immerda.ch>2008-10-24 18:28:06 +0000
commit393cbe09d39cd9d93b002a0aff44460dd0936aa8 (patch)
tree10bfaa8d56800d18226e0a665a0cc1d08d5251e2 /manifests
parent60ad5def8754f0a63906b2d5014fa3774ee460a3 (diff)
downloadpuppet-rsync-393cbe09d39cd9d93b002a0aff44460dd0936aa8.tar.gz
puppet-rsync-393cbe09d39cd9d93b002a0aff44460dd0936aa8.tar.bz2
added rrsync
Diffstat (limited to 'manifests')
-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;
+ }
+}