summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authorMathieu Bornoz <mathieu.bornoz@camptocamp.com>2013-04-29 12:33:46 +0200
committerMathieu Bornoz <mathieu.bornoz@camptocamp.com>2013-04-29 12:33:46 +0200
commita726b4045442fe2219353fb983d650fcd94b13be (patch)
tree37e5ddb4f8ac5083f000a189d358e66e2b36ab7f /manifests/client.pp
parent08c49965861137ae79620c7ca82af572f0ef024f (diff)
rsyslog: make all module params configurable
+ support false for *_package_name variables. This is useful if relp support is not necessary as it happens that no packages exist for RedHat < 6. All these changes should be fully backward compatible.
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 39edd31..dcad059 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -38,10 +38,10 @@ class rsyslog::client (
default => template($custom_config),
}
- file { $rsyslog::params::client_conf:
+ file { $rsyslog::client_conf:
ensure => present,
owner => root,
- group => $rsyslog::params::run_group,
+ group => $rsyslog::run_group,
content => $content_real,
require => Class['rsyslog::config'],
notify => Class['rsyslog::service'],