On Wed, 2010-11-24 at 11:40 -0800, Brian C. Lane wrote: > Convert symlinks in /dev/disk/ to their real paths before trying to > resolve them when mounting the disks for rescue. Ack. > > Resolves: rhbz#605312 > --- > storage/devicetree.py | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/storage/devicetree.py b/storage/devicetree.py > index 56721e8..728191e 100644 > --- a/storage/devicetree.py > +++ b/storage/devicetree.py > @@ -2304,6 +2304,9 @@ class DeviceTree(object): > if device is None: > log.error("failed to resolve device %s" % devspec) > elif devspec.startswith("/dev/"): > + if devspec.startswith("/dev/disk/"): > + devspec = os.path.realpath(devspec) > + > # device path > device = self.getDeviceByPath(devspec) > if device is None: _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list