X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=26ef566054460912ebc7ff4f55e552874c8adf27;hp=1934575a7597a9c70fd0e82987353700ec8d7504;hb=cc29a9eaa8912af5bcf3ba00fb8a04e19e57a32d;hpb=0c6e4eb8b502b781754e6b59a67dd1addb593778 diff --git a/autoconfig.functions b/autoconfig.functions index 1934575..26ef566 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Klaus Knopper , (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mon Apr 16 19:32:25 CEST 2007 [mika] +# Latest change: Son Apr 22 14:01:33 CEST 2007 [mika] ################################################################################ # {{{ path, variables, signals, umask, zsh @@ -2194,6 +2194,11 @@ if checkbootparam "mirror" ; then MIRROR="$(getbootparam 'mirror' 2>>$DEBUG)" fi +if checkbootparam "boot_append" ; then + BOOT_APPEND='' + BOOT_APPEND="$(getbootparam 'boot_append' 2>>$DEBUG)" +fi + if checkbootparam "password" ; then PASSWORD='' PASSWORD="$(getbootparam 'password' 2>>$DEBUG)" @@ -2214,11 +2219,12 @@ fi [ -n "$RELEASE" ] && RELEASECMD="--release $RELEASE" || RELEASECMD='' [ -n "$MIRROR" ] && MIRRORCMD="--mirror $MIRROR" || MIRRORCMD='' [ -n "$PASSWORD" ] && PASSWORDCMD="--password $PASSWORD" || PASSWORDCMD='' +[ -n "$BOOT_APPEND" ] && BOOT_APPEND="--boot_append $BOOT_APPEND" || BOOT_APPEND='' # and finally write script and execute it cat>|/usr/bin/grml-debootstrap_noninteractive<