blob: 8d49da71226ab1df6299568b368844d5306a6ef7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- poller_maintenance.php.orig 2017-04-26 00:30:09 UTC
+++ poller_maintenance.php
@@ -175,13 +175,13 @@ function logrotate_rotatenow () {
$log = read_config_option('path_cactilog');
if ($log == '') {
- $log = $config['base_path'] . '/log/cacti.log';
+ $log = '/var/log/cacti/log';
}
set_config_option('logrotate_lastrun', time());
clearstatcache();
- if (is_writable(dirname($log) . '/') && is_writable($log)) {
+ if (is_writable('/var/log/cacti') && is_writable($log)) {
$perms = octdec(substr(decoct( fileperms($log) ), 2));
$owner = fileowner($log);
$group = filegroup($log);
|