2007-06-29 Raul Mateos <raulofpandora@gmail.com>
Pandora Console: * images/lupa.png: better image * operation/reporting/reporting.php: New summary file for reportings * operation/menu.php: Changed code to show new reporting file. Pandora Agents: * linux/pandora_agent.conf: Changed log and temp paths. Pandora Server: * conf/pandora_server.conf: Changed default incomming dir and log. Fixed small bug with dbuser. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@549 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
03ac47b70f
commit
ec55e97053
|
@ -1,3 +1,7 @@
|
|||
2007-06-29 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* linux/pandora_agent.conf: Changed log and temp paths.
|
||||
|
||||
2007-06-25 Manuel Arostegui <marostegui@artica.es>
|
||||
|
||||
* aix/pandora_agent.conf: Added missing line agent_name
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
|
||||
server_ip 192.168.50.1
|
||||
server_path /var/spool/pandora/data_in
|
||||
temporal /tmp
|
||||
logfile /var/log/pandora_agent.log
|
||||
temporal /var/spool/pandora/data_out
|
||||
logfile /var/log/pandora/pandora_agent.log
|
||||
|
||||
# Interval in seconds, 300 by default
|
||||
interval 300
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2007-06-29 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* images/lupa.png: better image
|
||||
|
||||
* operation/reporting/reporting.php: New summary file for reportings
|
||||
|
||||
* operation/menu.php: Changed code to show new reporting file.
|
||||
|
||||
2007-06-28 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* install.php: Change file permissions of config.php when it is
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 848 B After Width: | Height: | Size: 1.0 KiB |
|
@ -80,15 +80,6 @@ if (give_acl($_SESSION["id_usuario"], 0, "AR")==1) {
|
|||
echo "<div class='arrow'>";
|
||||
}
|
||||
echo "<ul class='mn'><li><a href='index.php?sec=estado&sec2=operation/agentes/exportdata' class='mn'>".$lang_label["export_data"]."</a></li></ul></div>";
|
||||
|
||||
/*
|
||||
if (isset($_GET["sec2"]) && $_GET["sec2"] == "operation/agentes/estadisticas") {
|
||||
echo "<div class='arrows'>";
|
||||
} else {
|
||||
echo "<div class='arrow'>";
|
||||
}
|
||||
echo "<ul class='mn'><li><a href='index.php?sec=estado&sec2=operation/agentes/estadisticas' class='mn'>". $lang_label["statistics"]. "</a></li></ul></div>";
|
||||
*/
|
||||
}
|
||||
|
||||
// Visual console
|
||||
|
@ -115,10 +106,9 @@ if (give_acl($_SESSION["id_usuario"], 0, "AR")==1) {
|
|||
echo "<ul class='mn'><li><a href='index.php?sec=visualc&sec2=operation/visual_console/render_view&id=".$row["id"]."' class='mn'>". substr($row["name"],0,15). "</a></li></ul></div>";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Server view
|
||||
// Server view
|
||||
if ( isset($_GET["sec2"]) && $_GET["sec2"] == "operation/servers/view_server") {
|
||||
echo '<div id="op2s">';
|
||||
} else {
|
||||
|
@ -254,7 +244,7 @@ if (give_acl($_SESSION["id_usuario"], 0, "AR")==1) {
|
|||
} else {
|
||||
echo '<li class="bb0">';
|
||||
}
|
||||
echo '<a href="index.php?sec=reporting&sec2=operation/reporting/graph_viewer" class="mn">'. $lang_label["reporting"].'</a></li></ul></div>';
|
||||
echo '<a href="index.php?sec=reporting&sec2=operation/reporting/reporting" class="mn">'. $lang_label["reporting"].'</a></li></ul></div>';
|
||||
|
||||
// Custom reporting
|
||||
if (isset($_GET["sec"]) && $_GET["sec"] == "reporting"){
|
||||
|
|
|
@ -1,11 +1,16 @@
|
|||
2007-06-29 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* conf/pandora_server.conf: Changed default incomming dir and log.
|
||||
Fixed small bug with dbuser.
|
||||
|
||||
2007-06-28 Manuel Arostegui <marostegui@artica.es>
|
||||
|
||||
* conf/pandora_server.conf: Fixed bug #1744240
|
||||
|
||||
* conf/pandora_server.conf: Fixed bug #1744240
|
||||
|
||||
* pandora_server: Added feature request #1744248
|
||||
|
||||
|
||||
* pandora_recon: Added feature request #1744248
|
||||
|
||||
|
||||
* pandora_network: Added feature request #1744248
|
||||
|
||||
2007-06-25 Sancho Lerena <slerena@artica.es>
|
||||
|
|
|
@ -11,17 +11,17 @@ servername ulises
|
|||
# incomingdir: Defines directory where incoming data packets are stored
|
||||
# You could set directory relative to base path or absolute, starting with /
|
||||
|
||||
incomingdir /opt/pandora_server/data_in
|
||||
incomingdir /var/spool/pandora/data_in
|
||||
|
||||
# log_file: Main logfile for pandora_server
|
||||
# You could set file relative to base path or absolute, starting with /
|
||||
|
||||
log_file /var/log/pandora_server.log
|
||||
log_file /var/log/pandora/pandora_server.log
|
||||
|
||||
# Error logfile: aux logfile for pandora_server errors (in Daemon mode)
|
||||
# You could set file relative to base path or absolute, starting with /
|
||||
|
||||
errorlog_file /var/log/pandora_server.error
|
||||
errorlog_file /var/log/pandora/pandora_server.error
|
||||
|
||||
# dbname: Database name (pandora by default
|
||||
|
||||
|
@ -29,7 +29,7 @@ dbname pandora
|
|||
|
||||
# dbuser: Database user name (pandora by default)
|
||||
|
||||
dbuser pandora
|
||||
dbuser pandora
|
||||
|
||||
# daemon: Runs in daemon mode (background) if 1, if 0 runs in foreground
|
||||
# this could be setup on command line with -D option
|
||||
|
|
Loading…
Reference in New Issue