From: Harald Hoyer Date: Mon, 11 Apr 2011 11:34:58 +0000 (+0200) Subject: crypt/cryptroot-ask.sh: check and use NEWROOT X-Git-Tag: 011~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8234b92d854335fe50c92e9a2b9c7a9d96028c95;p=thirdparty%2Fdracut.git crypt/cryptroot-ask.sh: check and use NEWROOT --- diff --git a/modules.d/90crypt/cryptroot-ask.sh b/modules.d/90crypt/cryptroot-ask.sh index 2099dfc5b..6c7f18db0 100755 --- a/modules.d/90crypt/cryptroot-ask.sh +++ b/modules.d/90crypt/cryptroot-ask.sh @@ -3,9 +3,10 @@ # ex: ts=8 sw=4 sts=4 et filetype=sh PATH=/usr/sbin:/usr/bin:/sbin:/bin +NEWROOT=${NEWROOT:-"/sysroot"} # do not ask, if we already have root -[ -f /sysroot/proc ] && exit 0 +[ -f $NEWROOT/proc ] && exit 0 # check if destination already exists [ -b /dev/mapper/$2 ] && exit 0