Added support for the 'auto' ip_target.

This commit is contained in:
Ramon Novoa 2016-11-21 11:44:08 +01:00
parent f16628b8c1
commit 5935a4c4b0
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ sub exec_network_module ($$$$) {
my $retries = $module->{'max_retries'};
# Use the agent address by default
if (! defined($ip_target) || $ip_target eq '') {
if (! defined($ip_target) || $ip_target eq '' || $ip_target eq 'auto') {
$ip_target = $agent_row->{'direccion'};
}