Convert symlinks in /dev/disk/ to their real paths before trying to resolve them when mounting the disks for rescue. 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 a077e93..28f0dea 100644 --- a/storage/devicetree.py +++ b/storage/devicetree.py @@ -2278,6 +2278,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: -- 1.7.2 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list