/[adm]/puppet/modules/rsyncd/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/rsyncd/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 790 - (show annotations) (download)
Thu Jan 13 20:33:50 2011 UTC (13 years, 3 months ago) by misc
File size: 350 byte(s)
- use the new xinetd module
1 class rsyncd {
2
3 xinetd::service { "rsync":
4 content => template("rsyncd/xinetd")
5 }
6
7 file { "rsyncd.conf":
8 path => "/etc/rsyncd.conf",
9 ensure => present,
10 owner => root,
11 group => root,
12 mode => 644,
13 require => Package["rsync"],
14 content => template("rsyncd/rsyncd.conf")
15 }
16 }

  ViewVC Help
Powered by ViewVC 1.1.30