summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/instdata.py b/instdata.py
index 91efc6b24..fa19188ed 100644
--- a/instdata.py
+++ b/instdata.py
@@ -26,7 +26,6 @@ import stat
import string
import firewall
import timezone
-import booty
import storage
import urllib
import iutil
@@ -47,20 +46,11 @@ _ = lambda x: gettext.ldgettext("anaconda", x)
class InstallData:
def reset(self):
- # Reset everything except:
- #
- # - The install language
-
- self.bootloader = booty.getBootloader(self)
-
if iutil.isS390() or self.anaconda.ksdata:
self.firstboot = FIRSTBOOT_SKIP
else:
self.firstboot = FIRSTBOOT_DEFAULT
- def writeKS(self, f):
- self.bootloader.writeKS(f)
-
def __init__(self, anaconda, extraModules):
self.anaconda = anaconda
self.extraModules = extraModules