summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteffen Zieger <me@saz.sh>2014-09-05 15:20:08 +0200
committerSteffen Zieger <me@saz.sh>2014-09-05 15:20:08 +0200
commita403c09e75ed7e50497b6ccf467dc50c63244942 (patch)
treebad94ca0efe848d2626abc752c302373d189b7f5 /tests
parentb172590ccc27e46df668ecccb5da663d2cbc5508 (diff)
fix some lint warnings, fixes #100
Diffstat (limited to 'tests')
-rw-r--r--tests/log_templates.pp4
-rw-r--r--tests/multiple_hosts.pp18
2 files changed, 11 insertions, 11 deletions
diff --git a/tests/log_templates.pp b/tests/log_templates.pp
index 79f1e8f..a6bf75b 100644
--- a/tests/log_templates.pp
+++ b/tests/log_templates.pp
@@ -1,4 +1,4 @@
-class{'rsyslog::client':
+class { 'rsyslog::client':
log_templates => [
{
name => 'RFC3164fmt',
@@ -6,4 +6,4 @@ class{'rsyslog::client':
},
],
actionfiletemplate => 'RFC3164fmt',
-} \ No newline at end of file
+}
diff --git a/tests/multiple_hosts.pp b/tests/multiple_hosts.pp
index 0852047..9e5a60e 100644
--- a/tests/multiple_hosts.pp
+++ b/tests/multiple_hosts.pp
@@ -1,17 +1,17 @@
-class{'rsyslog::client':
+class { 'rsyslog::client':
remote_servers => [
{
- host => 'logs.example.org',
+ host => 'logs.example.org',
},
{
- port => '55514',
+ port => '55514',
},
{
- host => 'logs.somewhere.com',
- port => '555',
- pattern => '*.log',
- protocol => 'tcp',
- format => 'RFC3164fmt',
+ host => 'logs.somewhere.com',
+ port => '555',
+ pattern => '*.log',
+ protocol => 'tcp',
+ format => 'RFC3164fmt',
},
]
-} \ No newline at end of file
+}