Marius Cramer
2015-06-18 96c95ad8ca4c460394b64a4d0ce7d2f0622125af
- added anothier lock check for apt
- changed language import to use mb_substr
2 files modified
6 ■■■■ changed files
interface/web/admin/language_import.php 2 ●●● patch | view | raw | blame | history
server/lib/classes/cron.d/100-monitor_system_update.inc.php 4 ●●●● patch | view | raw | blame | history
interface/web/admin/language_import.php
@@ -36,7 +36,7 @@
    $new_string = '';
    for($c = 0; $c < mb_strlen($string); $c++) {
        $char = $string{$c};
        $char = mb_substr($string, $c, 1);
        if($in_string === true && $escaped === false && $char === $quote) {
            // this marks a string end (e.g. for concatenation)
server/lib/classes/cron.d/100-monitor_system_update.inc.php
@@ -76,13 +76,13 @@
            /*
             * first update the "apt database"
             */
            shell_exec('apt-get update');
            shell_exec('while fuser /var/lib/apt/lists/lock >/dev/null 2>&1 ; do sleep 2; done; apt-get update');
            /*
             * Then test the upgrade.
             * if there is any output, then there is a needed update
             */
            $aptData = shell_exec('while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do sleep 2; done; apt-get -s -qq dist-upgrade');
            $aptData = shell_exec('while fuser /var/lib/dpkg/lock >/dev/null 2>&1 || fuser /var/lib/apt/lists/lock >/dev/null 2>&1 ; do sleep 2; done; apt-get -s -qq dist-upgrade');
            if ($aptData == '') {
                /* There is nothing to update! */
                $state = 'ok';