X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml-debootstrap;h=3c6ef2f54bc41a7cd4828c91c67475bd71e26317;hb=016c46616d5dcac315ef1796c4ba0464ee1610fc;hp=29ae03f7648cdf778ebd6cef1dfb07712666372a;hpb=d39c8dfd5a06ae1ce0edb31600e8ed7da2ac02dd;p=grml-debootstrap.git diff --git a/grml-debootstrap b/grml-debootstrap index 29ae03f..3c6ef2f 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -258,7 +258,7 @@ cleanup() { # Remove temporary mountpoint again if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then if [ -d "$MNTPOINT" ] ; then - rmdir "$MNTPOINT" + rmdir "$MNTPOINT" || true fi fi @@ -1451,7 +1451,7 @@ prepare_vm() { fi # make sure loop module is present and a usable loop device exists - modprobe -q loop + modprobe loop || true if ! losetup -f >/dev/null 2>&1; then eerror "Error finding usable loop device" bailout 1 @@ -1459,7 +1459,7 @@ prepare_vm() { # if dm-mod isn't available then kpartx will fail with # "Is device-mapper driver missing from kernel? [...]" - modprobe -q dm-mod + modprobe dm-mod || true if ! grep -q 'device-mapper' /proc/misc >/dev/null 2>&1 ; then eerror "Device-mapper support missing in kernel." bailout 1