summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/reconfig.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/installclasses/reconfig.py b/installclasses/reconfig.py
deleted file mode 100644
index ef41036a1..000000000
--- a/installclasses/reconfig.py
+++ /dev/null
@@ -1,53 +0,0 @@
-from installclass import BaseInstallClass
-from instdata import InstallData
-from translate import N_
-from translate import _
-import os
-import iutil
-
-class ReconfigInstallData(InstallData):
-
- def write(self, instPath):
- self.langSupport.write (instPath)
- self.keyboard.write (instPath)
- self.network.write (instPath)
- self.auth.write (instPath)
- self.firewall.write (instPath)
- self.timezone.write (instPath)
- self.rootPassword.write (instPath, self.auth)
- self.accounts.write (instPath, self.auth)
-
- def writeKS(self, file):
- pass
-
-class InstallClass(BaseInstallClass):
- name = "reconfig"
- pixmap = None
- sortPriority = 999999
- hidden = 1
-
- parentClass = None
-
- def setSteps(self, dispatch):
- dispatch.setStepList(
- "reconfigwelcome",
- "reconfigkeyboard",
- "networkdevicecheck",
- "network",
- "firewall",
- "languagesupport",
- "timezone",
- "accounts",
- "authentication",
- "writeconfig",
- "reconfigcomplete"
- )
-
- installDataClass = ReconfigInstallData
-
- def __init__(self, expert):
- BaseInstallClass.__init__(self, expert)
-
- if (iutil.getDefaultRunlevel() != '5' or
- not os.access("/etc/X11/XF86Config", os.R_OK)):
- forceTextMode = 1