aboutsummaryrefslogtreecommitdiffstats
path: root/modules/xinetd/manifests/service.pp
blob: 23ebeedf90d83c212f95a9b680cbca8f48838622 (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']
    }
}