diff options
author | mh <mh@immerda.ch> | 2008-09-04 12:45:12 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-09-04 12:45:12 +0000 |
commit | 60ad5def8754f0a63906b2d5014fa3774ee460a3 (patch) | |
tree | ea5bbf79d2c350c7ef3d47c3462811d3e720a20e /manifests | |
download | puppet-rsync-60ad5def8754f0a63906b2d5014fa3774ee460a3.tar.gz puppet-rsync-60ad5def8754f0a63906b2d5014fa3774ee460a3.tar.bz2 |
added rsync module with client definition
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/client.pp | 7 | ||||
-rw-r--r-- | manifests/init.pp | 6 |
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 {} |