summaryrefslogtreecommitdiffstats
path: root/storage/formats/multipath.py
Commit message (Collapse)AuthorAgeFilesLines
* Add __str__ methods to the DeviceFormat classes.David Lehman2009-12-161-0/+5
|
* Hide devices with certain formatting in the main partitioning UI.David Lehman2009-12-091-0/+1
| | | | We don't want to show biosraid, multipath, &c disks in the GUI.
* Whenever storage code tries to log a method call, do so into the ↵Ales Kozumplik2009-12-031-1/+1
| | | | | | | 'tmp/storage.log' file. (a part of #524980) Previously, the method call was logged into 'tmp/anaconda.log' which made the file harder to do anything useful with.
* pylint does not like @foo.setterHans de Goede2009-09-011-4/+5
| | | | | | | pylint does not like @foo.setter, so use the foo = property(setter, getter) Notation instead. Note that we already use this notation everywhere except for these 2 places, so doing things this way is more consistent anyways.
* Recognize mpath devices when we see them.Peter Jones2009-08-061-0/+88
This identifies that a device is part of a multipath, and builds an mpath device for partitioning.