From 1419079315b69a271b5019bcf5e7c4df39633677 Mon Sep 17 00:00:00 2001 From: Micah Date: Tue, 24 May 2016 10:19:39 -0400 Subject: Squashed 'puppet/modules/rsyslog/' content from commit b8ef11c git-subtree-dir: puppet/modules/rsyslog git-subtree-split: b8ef11c23949d12732ad5cdaebb3023ff39a297a --- tests/database.pp | 9 +++++++++ tests/init.pp | 1 + tests/log_templates.pp | 9 +++++++++ tests/multiple_hosts.pp | 17 +++++++++++++++++ 4 files changed, 36 insertions(+) create mode 100644 tests/database.pp create mode 100644 tests/init.pp create mode 100644 tests/log_templates.pp create mode 100644 tests/multiple_hosts.pp (limited to 'tests') diff --git a/tests/database.pp b/tests/database.pp new file mode 100644 index 00000000..269be696 --- /dev/null +++ b/tests/database.pp @@ -0,0 +1,9 @@ +include rsyslog + +class { 'rsyslog::database': + backend => 'mysql', + server => 'localhost', + database => 'Syslog', + username => 'rsyslog', + password => 'secret', +} diff --git a/tests/init.pp b/tests/init.pp new file mode 100644 index 00000000..7fc50c8b --- /dev/null +++ b/tests/init.pp @@ -0,0 +1 @@ +include rsyslog diff --git a/tests/log_templates.pp b/tests/log_templates.pp new file mode 100644 index 00000000..a6bf75b7 --- /dev/null +++ b/tests/log_templates.pp @@ -0,0 +1,9 @@ +class { 'rsyslog::client': + log_templates => [ + { + name => 'RFC3164fmt', + template => '<%PRI%>%TIMESTAMP% %HOSTNAME% %syslogtag%%msg%', + }, + ], + actionfiletemplate => 'RFC3164fmt', +} diff --git a/tests/multiple_hosts.pp b/tests/multiple_hosts.pp new file mode 100644 index 00000000..9e5a60ed --- /dev/null +++ b/tests/multiple_hosts.pp @@ -0,0 +1,17 @@ +class { 'rsyslog::client': + remote_servers => [ + { + host => 'logs.example.org', + }, + { + port => '55514', + }, + { + host => 'logs.somewhere.com', + port => '555', + pattern => '*.log', + protocol => 'tcp', + format => 'RFC3164fmt', + }, + ] +} -- cgit v1.2.3