summaryrefslogtreecommitdiff
path: root/manifests/service.pp
blob: 33623d138d6029fea2808bfb08f17f8dfdf4ae3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# == 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,
    require => Class['rsyslog::config'],
  }
}