X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=scripts%2F01_bootstrap.sh;h=ef6ea1e08bbd8e43791fba9d367205e08e435189;hb=c2973166d09f796d31916b37790739730071a8d6;hp=027f5bdb55cca68468fff8f011dd77a43afc7f1d;hpb=46e3a2d278bc75b91f6a5eae3fbdedae02441d64;p=grml-live.git diff --git a/scripts/01_bootstrap.sh b/scripts/01_bootstrap.sh index 027f5bd..ef6ea1e 100644 --- a/scripts/01_bootstrap.sh +++ b/scripts/01_bootstrap.sh @@ -14,13 +14,16 @@ bootstrap() { if ! [ -d "${TARGET}/grml-live/" ] ; then debug "bootstrap: creating ${TARGET}/grml-live/" mkdir "${TARGET}/grml-live/" + mkdir "${TARGET}/grml-live/scripts/" + mkdir "${TARGET}/grml-live/files/" fi # check whether chroot exists already if [ -f "${TARGET}/grml-live/bootstrap" ] ; then debug_warn "chroot exists already, skipping execution of $DEBOOTSTRAP and continuing" else - $DEBOOTSTRAP --arch $ARCH $RELEASE $TARGET $MIRROR && touch "${TARGET}/grml-live/bootstrap" + # $DEBOOTSTRAP --arch $ARCH $RELEASE $TARGET $MIRROR && touch "${TARGET}/grml-live/bootstrap" + $DEBOOTSTRAP $RELEASE $TARGET $MIRROR && touch "${TARGET}/grml-live/bootstrap" fi }