summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-09-04 12:45:12 +0000
committermh <mh@immerda.ch>2008-09-04 12:45:12 +0000
commit60ad5def8754f0a63906b2d5014fa3774ee460a3 (patch)
treeea5bbf79d2c350c7ef3d47c3462811d3e720a20e /manifests
downloadpuppet-rsync-60ad5def8754f0a63906b2d5014fa3774ee460a3.tar.gz
puppet-rsync-60ad5def8754f0a63906b2d5014fa3774ee460a3.tar.bz2
added rsync module with client definition
Diffstat (limited to 'manifests')
-rw-r--r--manifests/client.pp7
-rw-r--r--manifests/init.pp6
2 files changed, 13 insertions, 0 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
new file mode 100644
index 0000000..3273f4b
--- /dev/null
+++ b/manifests/client.pp
@@ -0,0 +1,7 @@
+# manifests/client.pp
+
+class rsync::client {
+ package{'rsync':
+ ensure => installed,
+ }
+}
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..94031c2
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,6 @@
+# manifests/init.pp - manage rsync stuff
+# Copyright (C) 2007 admin@immerda.ch
+# GPLv3
+
+
+class rsync {}