aboutsummaryrefslogtreecommitdiffstats
path: root/modules/rsyncd
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-19 22:02:50 +0000
committerMichael Scherer <misc@mageia.org>2012-03-19 22:02:50 +0000
commitbb5299c5d01e12d007dbbfe273b9411111c1ec2c (patch)
tree07685016229ff0fb50a4c678e998404747774075 /modules/rsyncd
parentf3e333793f4b3c46f161b2a2a3416c67c8b29767 (diff)
downloadpuppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar
puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.gz
puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.bz2
puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.tar.xz
puppet-bb5299c5d01e12d007dbbfe273b9411111c1ec2c.zip
clean rsyncd module
Diffstat (limited to 'modules/rsyncd')
-rw-r--r--modules/rsyncd/manifests/init.pp10
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)
}
}