diff options
author | Micah <micah@leap.se> | 2016-07-12 16:46:28 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-07-12 16:46:28 -0400 |
commit | 1e1e25286b64790141c9627f81b50f579b13b719 (patch) | |
tree | 0bddd4510b108b4f2e8a5abc0332972efeedd1da /puppet/modules/rsyslog/manifests/service.pp | |
parent | 850a14b59444737f703686d0d1996bf09ab08e2b (diff) |
git subrepo clone https://leap.se/git/puppet_rsyslog puppet/modules/rsyslog
subrepo:
subdir: "puppet/modules/rsyslog"
merged: "b8ef11c"
upstream:
origin: "https://leap.se/git/puppet_rsyslog"
branch: "master"
commit: "b8ef11c"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo"
commit: "1e79595"
Change-Id: Iee06502c6df609f1a261410742360cec8694dab5
Diffstat (limited to 'puppet/modules/rsyslog/manifests/service.pp')
-rw-r--r-- | puppet/modules/rsyslog/manifests/service.pp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/puppet/modules/rsyslog/manifests/service.pp b/puppet/modules/rsyslog/manifests/service.pp new file mode 100644 index 00000000..4be19999 --- /dev/null +++ b/puppet/modules/rsyslog/manifests/service.pp @@ -0,0 +1,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'], + } +} |