blob: 4be1999949ca0204afeb5346d2cb33d20f1e0fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# == Class: rsyslog::service
#
# This class enforces running of the rsyslog service.
#
# === Parameters
#
# === Variables
#
# === Examples
#
# class { 'rsyslog::service': }
#
class rsyslog::service {
service { $rsyslog::service_name:
ensure => running,
enable => true,
hasstatus => $rsyslog::service_hasstatus,
hasrestart => $rsyslog::service_hasrestart,
require => Class['rsyslog::config'],
}
}
|