summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authornadir <nadir-technik@nadir.org>2012-11-08 14:42:27 +0100
committerGabriel Filion <gabster@lelutin.ca>2015-04-19 17:06:50 -0400
commit7288988a6d3f2785f5e23bd2d7a7f6c275421c00 (patch)
tree18b917d57dbbbcc6a5567b8b6e4eccfc16c2892a /manifests
parent0b20e1e0fd001cb0b688c6bf6971c8e7c3f743c6 (diff)
unquoted boolean variables
Diffstat (limited to 'manifests')
-rw-r--r--manifests/service.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/service.pp b/manifests/service.pp
index 134d1f7..918ce24 100644
--- a/manifests/service.pp
+++ b/manifests/service.pp
@@ -30,8 +30,8 @@ define nagios::service (
if $check_comand == 'absent' {
fail("Must pass a check_command to ${name} if it should be present")
}
- if ($use_nrpe == 'true') {
- include nagios::command::nrpe_timeout
+ if ($use_nrpe == true) {
+ include nagios::command::nrpe_timeout
if ($nrpe_args != '') {
$real_check_command = "check_nrpe_timeout!$nrpe_timeout!$check_command!\"$nrpe_args\""