Revision 55beed7e
Added by Jim Pingle almost 6 years ago
src/etc/inc/globals.inc | ||
---|---|---|
71 | 71 |
"disablecrashreporter" => false, |
72 | 72 |
"crashreporterurl" => "https://crashreporter.pfsense.org/crash_reporter.php", |
73 | 73 |
"debug" => false, |
74 |
"latest_config" => "19.6",
|
|
74 |
"latest_config" => "19.7",
|
|
75 | 75 |
"minimum_ram_warning" => "101", |
76 | 76 |
"minimum_ram_warning_text" => "128 MB", |
77 | 77 |
"wan_interface_name" => "wan", |
src/etc/inc/upgrade_config.inc | ||
---|---|---|
6036 | 6036 |
} |
6037 | 6037 |
} |
6038 | 6038 |
|
6039 |
/* Add newsyslog cron job */
|
|
6039 |
/* Skipped. See https://redmine.pfsense.org/issues/9730 */
|
|
6040 | 6040 |
function upgrade_195_to_196() { |
6041 |
} |
|
6042 |
|
|
6043 |
/* Add newsyslog cron job */ |
|
6044 |
function upgrade_196_to_197() { |
|
6041 | 6045 |
global $g, $config; |
6042 | 6046 |
|
6047 |
install_cron_job('/usr/sbin/newsyslog', true, "*/1", '*', '*', '*', '*', 'root', false); |
|
6043 | 6048 |
} |
6044 | 6049 |
|
6045 | 6050 |
/* |
... | ... | |
6051 | 6056 |
* version |
6052 | 6057 |
*/ |
6053 | 6058 |
function additional_config_upgrade() { |
6054 |
install_cron_job('/usr/sbin/newsyslog', true, "*/1", '*', '*', '*', '*', 'root', false); |
|
6055 | 6059 |
} |
6056 | 6060 |
|
6057 | 6061 |
?> |
Also available in: Unified diff
Relocate newsyslog cron install task. Fixes #9730