| 2171 | } |
| 2172 | |
| 2173 | void ExternalCommandProcessor::ChangeCustomCommandVarInternal(const Command::Ptr& command, const String& name, const Value& value) |
| 2174 | { |
| 2175 | Log(LogNotice, "ExternalCommandProcessor") |
| 2176 | << "Changing custom var '" << name << "' for command '" << command->GetName() << "' to value '" << value << "'"; |
| 2177 | |
| 2178 | command->ModifyAttribute("vars." + name, value); |
| 2179 | } |
| 2180 | |
| 2181 | void ExternalCommandProcessor::EnableHostgroupHostNotifications(double, const std::vector<String>& arguments) |
| 2182 | { |
nothing calls this directly
no test coverage detected