X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-bottom%2F24preseed;h=1f5c513067aa4d5615ce3164eb8c1e3d819fdb1b;hb=29c5edc37612c351083a5a2fbe034dbeb31dfb55;hp=60b9be6035be6318ab87126932346bf70a0d2c6f;hpb=e1f1b6e7af1c7d602ffc0d2879dc9ff19bd19583;p=live-boot-grml.git diff --git a/scripts/live-bottom/24preseed b/scripts/live-bottom/24preseed index 60b9be6..1f5c513 100755 --- a/scripts/live-bottom/24preseed +++ b/scripts/live-bottom/24preseed @@ -58,16 +58,18 @@ fi if db_get preseed/early_command && [ "$RET" ] then - echo 'APT::Keep-Fds { "3"; "4"; };' > /root/etc/apt/apt.conf.d/00-early-debconf - DEBIAN_FRONTEND=passthrough \ - DEBCONF_READFD=3 \ - DEBCONF_WRITEFD=4 \ - DEBCONF_DB_REPLACE=configdb \ - DEBCONF_DB_OVERRIDE='Pipe{infd:none outfd:none}' \ - sh -c "$RET" - rm -f /root/etc/apt/apt.conf.d/00-early-debconf + EARLY="$RET" + if db_get preseed/allow-network && [ "$RET" = true ]; then + start_network + fi + + DEBIAN_HAS_FRONTEND= DEBCONF_REDIR= \ + DEBIAN_FRONTEND=noninteractive \ + sh -c "$EARLY" fi +stop_network + # Clear out debconf database backup files to save memory. rm -f /root/var/cache/debconf/*.dat-old