]> gitweb.fluxo.info Git - puppet-rsync.git/commitdiff
added rsync module with client definition
authormh <mh@immerda.ch>
Thu, 4 Sep 2008 12:45:12 +0000 (12:45 +0000)
committermh <mh@immerda.ch>
Thu, 4 Sep 2008 12:45:12 +0000 (12:45 +0000)
manifests/client.pp [new file with mode: 0644]
manifests/init.pp [new file with mode: 0644]

diff --git a/manifests/client.pp b/manifests/client.pp
new file mode 100644 (file)
index 0000000..3273f4b
--- /dev/null
@@ -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 (file)
index 0000000..94031c2
--- /dev/null
@@ -0,0 +1,6 @@
+# manifests/init.pp - manage rsync stuff
+# Copyright (C) 2007 admin@immerda.ch
+# GPLv3
+
+
+class rsync {}