summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAaron Hicks <hicksa@landcareresearch.co.nz>2014-02-05 11:35:08 +1300
committerAaron Hicks <hicksa@landcareresearch.co.nz>2014-02-07 10:41:01 +1300
commit8804f3f95db7f1e69f44db9a9424a3e5d0d16b62 (patch)
tree06f95065c2dd52c96c783ae0e6bc2ff062875c7e /tests
parent3707f44c19da275e14e99df0851ced9dce3f69d7 (diff)
configuring mulitple remote servers from the remote_servers parameter using a hash.
Diffstat (limited to 'tests')
-rw-r--r--tests/multiple_hosts.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/multiple_hosts.pp b/tests/multiple_hosts.pp
new file mode 100644
index 0000000..0852047
--- /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',
+ },
+ ]
+} \ No newline at end of file