summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-05-31 20:00:34 +0000
committerMike Fulbright <msf@redhat.com>2000-05-31 20:00:34 +0000
commitab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc (patch)
tree7b1bf87c856018eaf141e2d5277e9a7e2021716f /fstab.py
parent88ca37d97105f66c3f95713e56ec64a81977bed8 (diff)
downloadanaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.tar.gz
anaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.tar.xz
anaconda-ab1ce066e0a1fe9b82da94cb5eee4ba90f0209dc.zip
fix stupid exposure of internal data
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/fstab.py b/fstab.py
index 4ffbf907b..475a33fe5 100644
--- a/fstab.py
+++ b/fstab.py
@@ -251,6 +251,12 @@ class Fstab:
def partitionList(self):
return self.ddruid.partitionList()
+ def getprotectedList(self):
+ if self.protectList:
+ return self.protectList
+ else:
+ return []
+
def driveList(self):
drives = isys.hardDriveDict().keys()
drives.sort (isys.compareDrives)