diff options
author | Micah <micah@leap.se> | 2016-05-24 10:19:39 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-24 10:19:39 -0400 |
commit | 1419079315b69a271b5019bcf5e7c4df39633677 (patch) | |
tree | 69305f1afb350e2d3956b0c8767c3a70cde7c7e6 /tests/multiple_hosts.pp |
Squashed 'puppet/modules/rsyslog/' content from commit b8ef11c
git-subtree-dir: puppet/modules/rsyslog
git-subtree-split: b8ef11c23949d12732ad5cdaebb3023ff39a297a
Diffstat (limited to 'tests/multiple_hosts.pp')
-rw-r--r-- | tests/multiple_hosts.pp | 17 |
1 files changed, 17 insertions, 0 deletions
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', + }, + ] +} |