fixed error CLI
This commit is contained in:
parent
5971870b1c
commit
09e1657583
|
@ -4261,19 +4261,20 @@ sub cli_update_group() {
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Locate agent in any Nodes of metaconsole
|
# Returns the Nodes ID where the agent is defined (Metaconsole only)
|
||||||
# Related option: --locate_agent
|
# Related option: --locate_agent
|
||||||
###############################################################################
|
###############################################################################
|
||||||
sub cli_locate_agent () {
|
sub cli_locate_agent () {
|
||||||
my ($agent_name) = @ARGV[2];
|
my ($agent_name) = @ARGV[2];
|
||||||
|
|
||||||
if (is_metaconsole($conf) == 1) {
|
if (is_metaconsole($conf) == 1) {
|
||||||
|
|
||||||
my $agents_server = enterprise_hook('get_metaconsole_agent',[$dbh, $agent_name]);
|
my $agents_server = enterprise_hook('get_metaconsole_agent',[$dbh, $agent_name]);
|
||||||
|
|
||||||
if (scalar(@{$agents_server}) != 0) {
|
if (scalar(@{$agents_server}) != 0) {
|
||||||
foreach my $agent (@{$agents_server}) {
|
foreach my $agent (@{$agents_server}) {
|
||||||
my $server = enterprise_hook('get_metaconsole_setup_server_id',[$dbh, $agent->{'server_name'}]);
|
#my $server = enterprise_hook('get_metaconsole_setup_server_id',[$dbh, $agent->{'server_name'}]);
|
||||||
print " $server \n\n "
|
print $agent->{'id_tmetaconsole_setup'} . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue