fuel-library/deployment/puppet/fuel/manifests/puppetsync.pp

36 lines
744 B
Puppet

class fuel::puppetsync (
$puppet_folder = '/etc/puppet',
$xinetd_config = '/etc/xinetd.d/rsync',
$rsync_config = '/etc/rsyncd.conf',
){
File {
ensure => present,
owner => 'root',
group => 'root',
mode => '0644',
}
file { 'rsync_conf' :
path => $rsync_config,
content => template('fuel/rsyncd.conf.erb'),
}
file { 'rsync_xinetd' :
path => $xinetd_config,
content => template('fuel/rsyncd_xinetd.erb'),
}
ensure_packages(['xinetd', 'rsync'])
if ! defined(Service['xinetd']) {
service { 'xinetd':
ensure => running,
enable => true,
require => Package['xinetd'],
}
}
Package['rsync'] -> File['rsync_conf', 'rsync_xinetd'] ~> Service['xinetd']
}