aboutsummaryrefslogtreecommitdiffstats
path: root/modules/rsyncd
diff options
context:
space:
mode:
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)
}
}