summaryrefslogtreecommitdiffstats
path: root/glpi-0.85-cron.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-12-17 13:59:29 +0100
committerRemi Collet <fedora@famillecollet.com>2014-12-17 13:59:29 +0100
commitd349e4be95ba37c97d9dbbee88241603f668aee8 (patch)
treed30a1f6e445fa93c4f26b3a39825603dfdca5e10 /glpi-0.85-cron.patch
parent75c6cfca9a86164df5a7d84faa3a77b320a12be3 (diff)
glpi: 0.85.1
Diffstat (limited to 'glpi-0.85-cron.patch')
-rw-r--r--glpi-0.85-cron.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/glpi-0.85-cron.patch b/glpi-0.85-cron.patch
new file mode 100644
index 0000000..511fc3c
--- /dev/null
+++ b/glpi-0.85-cron.patch
@@ -0,0 +1,29 @@
+diff -up install/install.php.rpm install/install.php
+--- install/install.php.rpm 2014-12-17 13:36:22.420558338 +0100
++++ install/install.php 2014-12-17 13:38:45.278209044 +0100
+@@ -345,6 +345,11 @@ function step4 ($databasename, $newdatab
+ $query = "UPDATE `glpi_users`
+ SET `language` = NULL";
+ $DB->queryOrDie($query, "4203");
++
++ // RPM provides a good system cron
++ Config::setConfigurationValues('core', array('cron_limit' => '3'));
++ $query = "UPDATE `glpi_crontasks` SET `mode`=2 WHERE `name`!='watcher' AND (`allowmode` & 2)";
++ $DB->queryOrDie($query, "4203");
+ }
+
+ //Check if the port is in url
+diff -up install/update.php.rpm install/update.php
+--- install/update.php.rpm 2014-12-11 14:16:55.000000000 +0100
++++ install/update.php 2014-12-17 13:36:22.420558338 +0100
+@@ -803,6 +803,10 @@ function updateDbUpTo031() {
+ $plugin = new Plugin();
+ $plugin->unactivateAll();
+
++ // RPM provides a good system cron
++ $query = "UPDATE `glpi_crontasks` SET `mode`=2 WHERE `name`!='watcher' AND (`allowmode` & 2)";
++ $DB->queryOrDie($query);
++
+ DBmysql::optimize_tables($migration);
+
+ return $ret;