From e15dd0538571814b85fcd15546bb8c786a4c2aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Tue, 15 Mar 2011 13:48:09 +0200 Subject: [PATCH] Initial version of rsync module. --- rsync/manifests/init.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rsync/manifests/init.pp diff --git a/rsync/manifests/init.pp b/rsync/manifests/init.pp new file mode 100644 index 0000000..fdd69de --- /dev/null +++ b/rsync/manifests/init.pp @@ -0,0 +1,10 @@ + +# Install rsync +# +class rsync { + + package { "rsync": + ensure => present, + } + +}