summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-24 13:55:10 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-24 15:00:37 -0500
commitb411847a898d4040bfd96e0e78ad289dc08c1b70 (patch)
tree5ac7b60002e7a375b7f357f18dec9b4f12a49dc9 /storage/__init__.py
parent83ad0ffd5086571378812ed173f0ee483df28f48 (diff)
downloadanaconda-b411847a898d4040bfd96e0e78ad289dc08c1b70.tar.gz
anaconda-b411847a898d4040bfd96e0e78ad289dc08c1b70.tar.xz
anaconda-b411847a898d4040bfd96e0e78ad289dc08c1b70.zip
Pass anaconda to turnOnSwap so we can use swap files.
For swap files we need to know anaconda.rootPath and since we're also using anaconda.intf it seems like time to just give in and pass anaconda.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 8ad919547..a3fbb5dd6 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -1481,13 +1481,13 @@ class FSSet(object):
options)
return mtab
- def turnOnSwap(self, intf=None, upgrading=None):
+ def turnOnSwap(self, anaconda, upgrading=None):
for device in self.swapDevices:
try:
device.setup()
device.format.setup()
except SuspendError:
- if intf:
+ if anaconda.intf:
if upgrading:
msg = _("The swap device:\n\n %s\n\n"
"in your /etc/fstab file is currently in "
@@ -1506,10 +1506,10 @@ class FSSet(object):
"to format all swap devices.") \
% device.path
- intf.messageWindow(_("Error"), msg)
+ anaconda.intf.messageWindow(_("Error"), msg)
sys.exit(0)
except DeviceError as (msg, path):
- if intf:
+ if anaconda.intf:
if upgrading:
err = _("Error enabling swap device %s: %s\n\n"
"The /etc/fstab on your upgrade partition "
@@ -1522,7 +1522,7 @@ class FSSet(object):
"device has not been initialized.\n\n"
"Press OK to exit the installer.") % \
(path, msg)
- intf.messageWindow(_("Error"), err)
+ anaconda.intf.messageWindow(_("Error"), err)
sys.exit(0)
def mountFilesystems(self, anaconda, raiseErrors=None, readOnly=None,