".__('Data Copy').""; // Initial checkings // if selected more than 0 agents $destino = $_POST["destino"]; if (count($destino) <= 0){ echo "

ERROR: ".__('No selected agents to copy')."

"; echo ""; include ("general/footer.php"); exit; } // Source $id_origen = $_POST["origen"]; // Copy files for ($a=0;$a
".__('copyage')." [".$agent_name_src."] -> [".$agent_name_dst."]"; $source = $config["remote_config"]."/".md5($agent_name_src); $destination = $config["remote_config"]."/".md5($agent_name_dst); copy ( $source.".md5", $destination.".md5" ); copy ( $source.".conf", $destination.".conf" ); } // for each destination agent } //end if copy modules or alerts // ============ // Form view // ============ } else { // title echo '

'.__('Agent configuration'). '>'. __('Configuration Management').'

'; echo '
'; echo ""; // Source group echo ''; echo '
'. __('Source group'). '

'; echo ''; echo '  '; echo ''; echo '

'; // Source agent echo ''. __('Source agent').''; pandora_help ('duplicateconfig'); echo '

'; // Show combo with SOURCE agents if ($id_group > 1) $sql1 = "SELECT * FROM tagente WHERE id_grupo = $id_group ORDER BY nombre "; else $sql1 = 'SELECT * FROM tagente ORDER BY nombre'; echo ''; echo '  '; echo ''; echo '

'; // Destination agent echo '
'; echo ''.__('To Agent(s):').'

'; echo "'; // Form buttons echo '
'; echo ''; echo '
'; echo '
'; } ?>