From 8f87b0a6f2fddaecac462e360fcc536368b97cb3 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 28 Mar 2009 18:35:57 +0100 Subject: [PATCH] 'use environment mdadm to write config file' --- usr/share/archboot/installer/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/share/archboot/installer/setup b/usr/share/archboot/installer/setup index eda073dce..3d72010eb 100755 --- a/usr/share/archboot/installer/setup +++ b/usr/share/archboot/installer/setup @@ -1368,7 +1368,7 @@ auto_mdadm() if [ -e $DESTDIR/etc/mdadm.conf ];then if [ "$(cat /proc/mdstat | grep ^md)" ]; then DIALOG --infobox "Adding raid setup to $DESTDIR/etc/mdadm.conf ..." 4 40 - chroot ${DESTDIR} mdadm -Ds >> $DESTDIR/etc/mdadm.conf + mdadm -Ds >> $DESTDIR/etc/mdadm.conf fi fi }