On Tue, 2009-10-13 at 17:17 -0400, Chris Lumens wrote: > --- > liveinst/liveinst | 7 ++++++- > 1 files changed, 6 insertions(+), 1 deletions(-) Looks okay to me. > > diff --git a/liveinst/liveinst b/liveinst/liveinst > index eed4e41..a37d923 100755 > --- a/liveinst/liveinst > +++ b/liveinst/liveinst > @@ -58,7 +58,12 @@ fi > > # devkit-disks is now mounting lots of stuff. for now, let's just try to unmount it all > umount /media/* > -for mnt in $(cat /proc/mounts |grep ^/dev |grep -v live | awk {'print $2;'}) ; do umount $mnt 2>/dev/null ; done > +tac /proc/mounts | grep ^/dev | grep -v live | while read dev mntpoint rest; do > + if [ -b $dev ]; then > + umount $mntpoint 2>/dev/null > + fi > +done > + > /sbin/swapoff -a > /sbin/lvm vgchange -an --ignorelockingfailure > _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list