Use dialog with --separate-output option 0.19
authorMichael Prokop <devnull@localhost>
Mon, 1 Sep 2008 10:17:54 +0000 (12:17 +0200)
committerMichael Prokop <devnull@localhost>
Mon, 1 Sep 2008 10:17:54 +0000 (12:17 +0200)
debian/changelog
grml-debootstrap

index 145baa2..3dbfae5 100644 (file)
@@ -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 <mika@grml.org>  Mon, 01 Sep 2008 12:16:55 +0200
+
 grml-debootstrap (0.18) unstable; urgency=low
 
   The "development sponsored by Sipwise GmbH" release.
index 8d31eb4..b97e298 100755 (executable)
@@ -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=$?