Changes of Revision 19
[-] | Added | cacti.changes |
x 1
2 +------------------------------------------------------------------- 3 +Thu May 3 18:35:21 UTC 2012 - cs@linux-administrator.com 4 + 5 +- update to release 0.8.8a 6 + bug#0002207: cannot export graph templates 7 + bug#0002208: Graphs with CDEFs fail to generate 8 + bug#0002209: External auth does not work behind a reverse proxy 9 + bug#0002211: creating an index USING BTREE fails ony MySQL < 5.0.60 10 + bug#0002213: CLI upgrade script is missing 0.8.7i as a target 11 + bug#0002214: SQL error during non-PIA upgrade to 088 when giving a default for a text field in plugin_realms 12 + bug#0002216: use of define_syslog_variables() gone in PHP 5.4 13 + bug#0002217: url_path should default to /cacti/ 14 + bug#0002221: Missing plugin directory causes endless loop in plugins.php 15 + bug#0002222: tail_logfile hangs when cacti.log not readable, filling apache log with fgets warnings 16 + 17 |
||
[-] | Changed | cacti.spec ^ |
10 1
2 3 Name: cacti 4 BuildRequires: apache2-devel libapr-util1-devel pcre-devel 5 -Version: 0.8.7h 6 +Version: 0.8.8a 7 Release: 1 8 Summary: Web Front-End to Monitor System Data via RRDtool 9 License: GPL v2 or later 10 |
||
[+] | Deleted | cacti-0.8.7h-cacti-log-path.patch ^ |
@@ -1,64 +0,0 @@ ---- include/global_settings.php -+++ include/global_settings.php -@@ -94,9 +94,9 @@ - ), - "path_cactilog" => array( - "friendly_name" => "Cacti Log File Path", -- "description" => "The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)", -+ "description" => "The path to your Cacti log file (if blank, defaults to /var/log/cacti.log)", - "method" => "filepath", -- "default" => $config["base_path"] . "/log/cacti.log", -+ "default" => "/var/log/cacti.log", - "max_length" => "255" - ), - "pollerpaths_header" => array( ---- install/index.php -+++ install/index.php -@@ -244,7 +244,7 @@ - if (config_value_exists("path_cactilog")) { - $input["path_cactilog"]["default"] = read_config_option("path_cactilog"); - } else { -- $input["path_cactilog"]["default"] = $config["base_path"] . "/log/cacti.log"; -+ $input["path_cactilog"]["default"] = "/var/log/cacti.log"; - } - - /* SNMP Version */ ---- lib/functions.php -+++ lib/functions.php -@@ -365,7 +365,7 @@ - /* Log to Logfile */ - if ((($logdestination == 1) || ($logdestination == 2)) && (read_config_option("log_verbosity") != POLLER_VERBOSITY_NONE)) { - if ($logfile == "") { -- $logfile = $config["base_path"] . "/log/cacti.log"; -+ $logfile = "/var/log/cacti.log"; - } - - /* echo the data to the log (append) */ ---- script_server.pl -+++ script_server.pl -@@ -1,4 +1,4 @@ --chdir("./scripts"); -+chdir("/usr/share/cacti/scripts"); - $loaded = 0; - while ($file = <*.pl>) { - next if $file eq $0; ---- utilities.php -+++ utilities.php -@@ -681,7 +681,7 @@ - $logfile = read_config_option("path_cactilog"); - - if ($logfile == "") { -- $logfile = "./log/rrd.log"; -+ $logfile = "/var/log/rrd.log"; - } - - /* helps determine output color */ -@@ -919,7 +919,7 @@ - $logfile = read_config_option("path_cactilog"); - - if ($logfile == "") { -- $logfile = "./log/cacti.log"; -+ $logfile = "/var/log/cacti.log"; - } - - html_start_box("<strong>Clear Cacti Log File</strong>", "100%", $colors["header"], "1", "center", ""); | ||
[+] | Added | cacti-0.8.8a-cacti-log-path.patch ^ |
@@ -0,0 +1,64 @@ +--- include/global_settings.php ++++ include/global_settings.php +@@ -94,9 +94,9 @@ + ), + "path_cactilog" => array( + "friendly_name" => "Cacti Log File Path", +- "description" => "The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)", ++ "description" => "The path to your Cacti log file (if blank, defaults to /var/log/cacti.log)", + "method" => "filepath", +- "default" => $config["base_path"] . "/log/cacti.log", ++ "default" => "/var/log/cacti.log", + "max_length" => "255" + ), + "pollerpaths_header" => array( +--- install/index.php ++++ install/index.php +@@ -244,7 +244,7 @@ + if (config_value_exists("path_cactilog")) { + $input["path_cactilog"]["default"] = read_config_option("path_cactilog"); + } else { +- $input["path_cactilog"]["default"] = $config["base_path"] . "/log/cacti.log"; ++ $input["path_cactilog"]["default"] = "/var/log/cacti.log"; + } + + /* SNMP Version */ +--- lib/functions.php ++++ lib/functions.php +@@ -365,7 +365,7 @@ + /* Log to Logfile */ + if ((($logdestination == 1) || ($logdestination == 2)) && (read_config_option("log_verbosity") != POLLER_VERBOSITY_NONE)) { + if ($logfile == "") { +- $logfile = $config["base_path"] . "/log/cacti.log"; ++ $logfile = "/var/log/cacti.log"; + } + + /* echo the data to the log (append) */ +--- script_server.pl ++++ script_server.pl +@@ -1,4 +1,4 @@ +-chdir("./scripts"); ++chdir("/usr/share/cacti/scripts"); + $loaded = 0; + while ($file = <*.pl>) { + next if $file eq $0; +--- utilities.php ++++ utilities.php +@@ -681,7 +681,7 @@ + $logfile = read_config_option("path_cactilog"); + + if ($logfile == "") { +- $logfile = "./log/rrd.log"; ++ $logfile = "/var/log/rrd.log"; + } + + /* helps determine output color */ +@@ -919,7 +919,7 @@ + $logfile = read_config_option("path_cactilog"); + + if ($logfile == "") { +- $logfile = "./log/cacti.log"; ++ $logfile = "/var/log/cacti.log"; + } + + html_start_box("<strong>Clear Cacti Log File</strong>", "100%", $colors["header"], "1", "center", ""); | ||
Deleted | cacti-0.8.7h.tar.bz2 ^ | |
Added | cacti-0.8.8a.tar.bz2 ^ |