summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorAaron Hicks <hicksa@landcareresearch.co.nz>2014-02-05 09:47:49 +1300
committerAaron Hicks <hicksa@landcareresearch.co.nz>2014-02-07 10:40:21 +1300
commit3707f44c19da275e14e99df0851ced9dce3f69d7 (patch)
tree33d5dd39898a47567b1ac26a9c9da2a2f0a8438b /manifests
parentaa064248b9646aa3e694478314105c44c7c40b76 (diff)
new parameter rsyslog::client parameter, actionfiletemplate, which sets the default logging format for remote and local logging.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/client.pp117
1 files changed, 59 insertions, 58 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index be8518d..4bf5403 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,58 +1,59 @@
-# == Class: rsyslog::client
-#
-# Full description of class role here.
-#
-# === Parameters
-#
-# [*sample_parameter*]
-# [*log_remote*]
-# [*spool_size*]
-# [*remote_type*]
-# [*log_local*]
-# [*log_auth_local*]
-# [*custom_config*]
-# [*custom_params*]
-# [*server*]
-# [*port*]
-# [*ssl_ca*]
-# [*preserve_fqdn]
-#
-# === Variables
-#
-# === Examples
-#
-# class { 'rsyslog::client': }
-#
-class rsyslog::client (
- $log_remote = true,
- $spool_size = '1g',
- $remote_type = 'tcp',
- $log_local = false,
- $log_auth_local = false,
- $custom_config = undef,
- $custom_params = undef,
- $server = 'log',
- $port = '514',
- $ssl_ca = undef,
- $preserve_fqdn = undef
-) inherits rsyslog {
-
- $content_real = $custom_config ? {
- '' => template("${module_name}/client.conf.erb"),
- default => template($custom_config),
- }
-
- rsyslog::snippet {'client':
- ensure => present,
- content => $content_real,
- }
-
- if $rsyslog::ssl and $ssl_ca == undef {
- fail('You need to define $ssl_ca in order to use SSL.')
- }
-
- if $rsyslog::ssl and $remote_type != 'tcp' {
- fail('You need to enable tcp in order to use SSL.')
- }
-
-}
+# == Class: rsyslog::client
+#
+# Full description of class role here.
+#
+# === Parameters
+#
+# [*sample_parameter*]
+# [*log_remote*]
+# [*spool_size*]
+# [*remote_type*]
+# [*log_local*]
+# [*log_auth_local*]
+# [*custom_config*]
+# [*custom_params*]
+# [*server*]
+# [*port*]
+# [*ssl_ca*]
+# [*actionfiletemplate*]
+#
+# === Variables
+#
+# === Examples
+#
+# class { 'rsyslog::client': }
+#
+class rsyslog::client (
+ $log_remote = true,
+ $spool_size = '1g',
+ $remote_type = 'tcp',
+ $log_local = false,
+ $log_auth_local = false,
+ $custom_config = undef,
+ $custom_params = undef,
+ $server = 'log',
+ $port = '514',
+ $ssl_ca = undef,
+ $actionfiletemplate = undef,
+ $preserve_fqdn = undef
+) inherits rsyslog {
+
+ $content_real = $custom_config ? {
+ '' => template("${module_name}/client.conf.erb"),
+ default => template($custom_config),
+ }
+
+ rsyslog::snippet {'client':
+ ensure => present,
+ content => $content_real,
+ }
+
+ if $rsyslog::ssl and $ssl_ca == undef {
+ fail('You need to define $ssl_ca in order to use SSL.')
+ }
+
+ if $rsyslog::ssl and $remote_type != 'tcp' {
+ fail('You need to enable tcp in order to use SSL.')
+ }
+
+}