summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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