Marius Cramer
2015-06-12 c2419b0e309de8597916f5dc753d99120f416ff7
- prevent failure of update check on debian system (on running dpkg process)
1 files modified
2 ■■■ changed files
server/lib/classes/cron.d/100-monitor_system_update.inc.php 2 ●●● patch | view | raw | blame | history
server/lib/classes/cron.d/100-monitor_system_update.inc.php
@@ -82,7 +82,7 @@
             * Then test the upgrade.
             * if there is any output, then there is a needed update
             */
            $aptData = shell_exec('apt-get -s -qq dist-upgrade');
            $aptData = shell_exec('while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do sleep 2; done; apt-get -s -qq dist-upgrade');
            if ($aptData == '') {
                /* There is nothing to update! */
                $state = 'ok';