mirror of https://github.com/Icinga/icinga2.git
parent
2720333d6e
commit
0f496c0b55
|
@ -134,9 +134,15 @@ void PluginUtility::ExecuteCommand(const Command::Ptr& commandObj, const Checkab
|
|||
if (!missingMacro.IsEmpty())
|
||||
continue;
|
||||
|
||||
int value;
|
||||
|
||||
if (set_if_resolved == "true")
|
||||
value = 1;
|
||||
else if (set_if_resolved == "false")
|
||||
value = 0;
|
||||
else {
|
||||
try {
|
||||
if (!Convert::ToLong(set_if_resolved))
|
||||
continue;
|
||||
value = Convert::ToLong(set_if_resolved);
|
||||
} catch (const std::exception& ex) {
|
||||
/* tried to convert a string */
|
||||
Log(LogWarning, "PluginUtility")
|
||||
|
@ -144,6 +150,10 @@ void PluginUtility::ExecuteCommand(const Command::Ptr& commandObj, const Checkab
|
|||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if (!value)
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else
|
||||
argval = arginfo;
|
||||
|
|
Loading…
Reference in New Issue