diff options
author | Chris Lumens <clumens@redhat.com> | 2007-11-28 15:11:42 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-11-28 15:11:42 -0500 |
commit | c5b08b826f9a8f281a19208c9571dfd5da9cf5a3 (patch) | |
tree | 7db9d46c27c10467fc609c081baf8b981fed19db /installmethod.py | |
parent | 2aac38821cf72d2bbb42a7cb85a89c871c706422 (diff) | |
download | anaconda-c5b08b826f9a8f281a19208c9571dfd5da9cf5a3.tar.gz anaconda-c5b08b826f9a8f281a19208c9571dfd5da9cf5a3.tar.xz anaconda-c5b08b826f9a8f281a19208c9571dfd5da9cf5a3.zip |
Move protected partitions into the Partitions object.
Diffstat (limited to 'installmethod.py')
-rw-r--r-- | installmethod.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/installmethod.py b/installmethod.py index 8a5c4247e..cfe8ae782 100644 --- a/installmethod.py +++ b/installmethod.py @@ -25,15 +25,6 @@ log = logging.getLogger("anaconda") # subclasses, though things like mountCD, unmountCD, ejectCD, and the cleanup # methods may not need to be redefined. By default, most methods pass. class InstallMethod: - ## Return the list of protected partitions. - # Protected partitions are the installation source for the hard drive - # installation method. Partitions on this list may be mounted, but may - # not be formatted. - # - # @return The list of protected partitions, or an empty list otherwise. - def protectedPartitions(self): - return [] - ## Perform method-specific actions to mount any installation media. # @param fsset An instance of FileSystemSet. # @param mntPoint The root of the filesystem to mount the media onto. |