diff options
author | Ales Kozumplik <akozumpl@redhat.com> | 2011-06-02 16:03:02 +0200 |
---|---|---|
committer | Ales Kozumplik <akozumpl@redhat.com> | 2011-06-17 10:31:35 +0200 |
commit | 32b0ba42d9b50d8b1fea3af2dbb2d7a2aa100227 (patch) | |
tree | b145cb5686c76fcb1897418f2e92326b3e9365b8 /pyanaconda/storage/devicelibs/mpath.py | |
parent | 5fff8c03337da5acf112ec2e205f60d5a5674901 (diff) | |
download | anaconda-32b0ba42d9b50d8b1fea3af2dbb2d7a2aa100227.tar.gz anaconda-32b0ba42d9b50d8b1fea3af2dbb2d7a2aa100227.tar.xz anaconda-32b0ba42d9b50d8b1fea3af2dbb2d7a2aa100227.zip |
multipath: do not set any mpath aliases explicitly.
Let multipath tools handle this.
Resolves: rhbz#674241
Related: rhbz#640735
Diffstat (limited to 'pyanaconda/storage/devicelibs/mpath.py')
-rw-r--r-- | pyanaconda/storage/devicelibs/mpath.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pyanaconda/storage/devicelibs/mpath.py b/pyanaconda/storage/devicelibs/mpath.py index efa95761a..c848a783d 100644 --- a/pyanaconda/storage/devicelibs/mpath.py +++ b/pyanaconda/storage/devicelibs/mpath.py @@ -265,10 +265,3 @@ blacklist { ret += '}\n' return ret - - def write_bindings(self): - ret = "# created by Anaconda\n" - for mpath in self.mpaths: - if ('alias' in mpath.config) and ('wwid' in mpath.config): - ret += "%s %s\n" % (mpath.config['alias'], mpath.config['wwid']) - return ret |