summaryrefslogtreecommitdiff
path: root/manifests/service.pp
blob: 66c03dc72b4c69b9df63df3c2f432f0cb0d780fc (plain)
1
2
3
4
5
6
7
class rsyslog::service {
    service { $rsyslog::params::service_name:
        ensure  => running,
        enable  => true,
        require => Class["rsyslog::config"],
    }
}