diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-19 22:02:50 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-19 22:02:50 +0000 |
commit | bb5299c5d01e12d007dbbfe273b9411111c1ec2c (patch) | |
tree | 07685016229ff0fb50a4c678e998404747774075 | |
parent | f3e333793f4b3c46f161b2a2a3416c67c8b29767 (diff) | |
download | puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.gz puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.bz2 puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.xz puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.zip |
clean rsyncd module
-rw-r--r-- | modules/rsyncd/manifests/init.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/rsyncd/manifests/init.pp b/modules/rsyncd/manifests/init.pp index 309072b6..5cc9e2fd 100644 --- a/modules/rsyncd/manifests/init.pp +++ b/modules/rsyncd/manifests/init.pp @@ -1,12 +1,12 @@ class rsyncd($rsyncd_conf = 'rsyncd/rsyncd.conf') { - xinetd::service { "rsync": - content => template("rsyncd/xinetd") + xinetd::service { 'rsync': + content => template('rsyncd/xinetd') } - file { "rsyncd.conf": - path => "/etc/rsyncd.conf", - require => Package["rsync"], + file { 'rsyncd.conf': + path => '/etc/rsyncd.conf', + require => Package['rsync'], content => template($rsyncd_conf) } } |