From: Michael Prokop Date: Mon, 1 Sep 2008 10:17:54 +0000 (+0200) Subject: Use dialog with --separate-output option X-Git-Tag: 0.19 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=7bf7613239c430d514a95c9902039f3b1660be27 Use dialog with --separate-output option --- diff --git a/debian/changelog b/debian/changelog index 145baa2..3dbfae5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grml-debootstrap (0.19) unstable; urgency=low + + * Use dialog with --separate-output option to make sure mdadm + receives correct quoting for the RAID devices. + + -- Michael Prokop Mon, 01 Sep 2008 12:16:55 +0200 + grml-debootstrap (0.18) unstable; urgency=low The "development sponsored by Sipwise GmbH" release. diff --git a/grml-debootstrap b/grml-debootstrap index 8d31eb4..b97e298 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -11,7 +11,7 @@ set -e # exit on any error # variables {{{ PN="$(basename $0)" -VERSION='0.18' +VERSION='0.19' MNTPOINT="/mnt/debootstrap.$$" # inside the chroot system locales might not be available, so use minimum: @@ -338,8 +338,7 @@ PARTITION_LIST=$(for i in $(echo $AVAILABLE_PARTITIONS) ; do echo "$i $(vol_id --type $i 2>/dev/null || echo [no_filesystem_yet]) off" done) -dialog --title "$PN" \ - --single-quoted \ +dialog --title "$PN" --separate-output \ --checklist "Please select the partitions you would like to use for your $RAIDLEVEL on ${TARGET}:" 0 0 0 \ $PARTITION_LIST 2>$TMPFILE RETVAL=$?