X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=a6b07a5eecf4550579565cde7831f8150170f10f;hp=4a9238ad7007612d928f0fe029ac2d87c374092d;hb=b90a031943fba5fa292afb783710f066e1416898;hpb=46693218643ba59dc70e4a3ddc65af745edc8737 diff --git a/autoconfig.functions b/autoconfig.functions index 4a9238a..a6b07a5 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -2159,17 +2159,17 @@ if ! [ -x /usr/sbin/grml-debootstrap ] ; then exit 1 fi -if checkbootparam "partition" ; then - PARTITION='' - PARTITION="$(getbootparam 'partition' 2>>$DEBUG)" +if checkbootparam "target" ; then + TARGET='' + TARGET="$(getbootparam 'target' 2>>$DEBUG)" # notice: the following checks whether the given partition is available, if not the skip # execution of grml-debootstrap as it might result in data loss... - if ! [ -r $PARTITION ] ; then - eerror "Partition $PARTITION does not exist. Skipping execution of grml-debootstrap therefore." ; eend 1 + if ! [ -r "$TARGET" ] ; then + eerror "Target $TARGET does not exist. Skipping execution of grml-debootstrap therefore." ; eend 1 fi else eindent - eerror "No bootoption partition found, can not continue execution of grml-debootstrap." ; eend 1 + eerror "No bootoption named target found, can not continue execution of grml-debootstrap." ; eend 1 eoutdent exit 1 fi @@ -2200,11 +2200,14 @@ if checkbootparam "password" ; then fi # now check which options are available -if [ -n "PARTITION" ] ; then - PARTITIONCMD="--target $PARTITION" +if [ -n "TARGET" ] ; then + TARGETCMD="--target $TARGET" else - PARTITIONCMD='' - ewarn "Partion not set via bootoption. Skipping execution of grml-debootstrap therefore."; eend 1 + TARGETCMD='' + eindent + eerror "Target not set via bootoption. Skipping execution of grml-debootstrap therefore."; eend 1 + eoutdent + exit 1 fi [ -n "$GRUB" ] && GRUBCMD="--grub $GRUB" || GRUBCMD='' [ -n "$GROOT" ] && GROOTCMD="--groot $GROOT" || GROOTCMD='' @@ -2215,7 +2218,7 @@ fi # and finally write script and execute it cat>|/usr/bin/grml-debootstrap_noninteractive<