summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Filion <gabster@lelutin.ca>2015-10-02 18:37:04 -0400
committerGabriel Filion <gabster@lelutin.ca>2015-10-02 19:12:05 -0400
commit93a00004cfea3e8a4c85d1bbdaaaac5e5ced118f (patch)
tree5acf3f805be3da4c7094cf364f345630ec1e06dc
parent2ee46c9a31a56110a38d5a076af84448643bd85b (diff)
lint init.pp
one line is too long, break the code block into multiple lines to fix this issue. it also creates more breathing space and makes the code easier to read.
-rw-r--r--manifests/init.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 4c68961..c800637 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -41,7 +41,9 @@ class nagios(
$cfgdir = '/etc/nagios3'
include nagios::debian
}
- default: { fail("No such operatingsystem: ${::operatingsystem} yet defined") }
+ default: {
+ fail("No such operatingsystem: ${::operatingsystem} yet defined")
+ }
}
if $manage_munin {
include nagios::munin