]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
core121: lower needed disksapce on /boot core122 v2.21-core122
authorArne Fitzenreiter <arne_f@ipfire.org>
Mon, 30 Jul 2018 20:22:31 +0000 (22:22 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 30 Jul 2018 20:22:31 +0000 (22:22 +0200)
the old value will sometimes fail on pae systems.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
config/rootfiles/core/121/update.sh

index bee8fd24f04442695d2df3293dc90123163af1f1..ca64b643da6b57f26214a79d7c11b0df112faf41 100644 (file)
@@ -61,7 +61,7 @@ fi
 
 BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
 
-if [ $BOOTSPACE -lt 22000 ]; then
+if [ $BOOTSPACE -lt 19000 ]; then
        exit_with_error "ERROR cannot update because not enough free space on /boot." 3
        exit 3
 fi