aboutsummaryrefslogtreecommitdiffstats
path: root/modules/xinetd/manifests/service.pp
blob: 24caafd9c4a64930d44b6faf483c0421c8f4146e (plain)
1
2
3
4
5
6
7
8
9
define xinetd::service($content) {
    include xinetd
    file { "/etc/xinetd.d/${name}":
        require => Package['xinetd'],
        content => $content,
        notify  => Service['xinetd']
    }
}