From: mh Date: Thu, 4 Sep 2008 12:45:12 +0000 (+0000) Subject: added rsync module with client definition X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=60ad5def8754f0a63906b2d5014fa3774ee460a3;p=puppet-rsync.git added rsync module with client definition --- 60ad5def8754f0a63906b2d5014fa3774ee460a3 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 {}