本文整理汇总了Python中installclass.BaseInstallClass类的典型用法代码示例。如果您正苦于以下问题:Python BaseInstallClass类的具体用法?Python BaseInstallClass怎么用?Python BaseInstallClass使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BaseInstallClass类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setSteps
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("partition")
anaconda.dispatch.skipStep("betanag",permanent=1)
if anaconda.id.displayMode == 'g':
anaconda.dispatch.skipStep("tasksel", skip = 1, permanent=1)
anaconda.dispatch.skipStep("group-selection", skip = 1, permanent=1)
示例2: __init__
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
self.repopaths = {"base": "%s" % (productPath,)}
# minimally set up tasks in case no key is provided
self.tasks = self.taskMap[productPath.lower()]
示例3: setSteps
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
if os.path.exists("/tmp/rocks-skip-welcome"):
anaconda.dispatch.skipStep("welcome", skip=1)
else:
anaconda.dispatch.skipStep("welcome", skip=0)
#
# skip the following 'graphical' screens
#
anaconda.dispatch.skipStep("parttype", skip=1)
anaconda.dispatch.skipStep("filtertype", skip=1)
anaconda.dispatch.skipStep("cleardiskssel", skip=1)
anaconda.dispatch.skipStep("bootloader", permanent=1)
anaconda.dispatch.skipStep("timezone", permanent=1)
anaconda.dispatch.skipStep("accounts", permanent=1)
anaconda.dispatch.skipStep("tasksel", permanent=1)
if os.path.exists("/tmp/manual-partitioning"):
anaconda.dispatch.skipStep("partition", skip=0)
anaconda.dispatch.skipStep("autopartitionexecute", skip=1)
else:
anaconda.dispatch.skipStep("partition", skip=1)
anaconda.dispatch.skipStep("autopartitionexecute", skip=0)
anaconda.dispatch.skipStep("group-selection", permanent=1)
anaconda.dispatch.skipStep("complete", permanent=1)
# from gui import stepToClass
from dispatch import installSteps
from packages import turnOnFilesystems
from rocks_getrolls import RocksGetRolls
#
# need to move the making of the file systems up before
# we download the rolls.
#
# rocks doesn't use the 'timezone' or 'accounts' screens,
# so we'll override them with our functions
#
# index = 0
# for key in installSteps:
# if key[0] == "timezone":
# break
# index = index + 1
# installSteps[index] = ("rocksenablefilesystems",
# turnOnFilesystems,)
# anaconda.dispatch.skipStep("rocksenablefilesystems", skip = 0)
# anaconda.dispatch.skipStep("enablefilesystems", skip = 1)
index = 0
for key in installSteps:
if key[0] == "upgbootloader":
break
index = index + 1
installSteps[index] = ("downloadrolls", RocksGetRolls)
anaconda.dispatch.skipStep("downloadrolls", skip=0)
示例4: setInstallData
def setInstallData (self, anaconda):
BaseInstallClass.setInstallData(self, anaconda)
self.setEarlySwapOn(1)
self.anaconda = anaconda
self.id = self.anaconda.id
self.id.firstboot = FIRSTBOOT_SKIP
# make sure our disks are alive
from partedUtils import DiskSet
ds = DiskSet(self.anaconda)
ds.startMPath()
ds.startDmRaid()
# parse the %pre
self.ksdata = KickstartData()
self.ksparser = KickstartPreParser(self.ksdata, None)
try:
self.ksparser.readKickstart(self.file)
except KickstartError, e:
if anaconda.intf:
anaconda.intf.kickstartErrorWindow(e.__str__())
sys.exit(0)
else:
raise KickstartError, e
示例5: setSteps
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
os.system('touch /tmp/in-setSteps')
if os.path.exists('/tmp/stack-skip-welcome'):
anaconda.dispatch.skipStep("welcome", skip = 1)
else:
anaconda.dispatch.skipStep("welcome", skip = 0)
#
# skip the following 'graphical' screens
#
anaconda.dispatch.skipStep("parttype", skip = 1)
anaconda.dispatch.skipStep("filtertype", skip = 1)
anaconda.dispatch.skipStep("cleardiskssel", skip = 1)
anaconda.dispatch.skipStep("bootloader", permanent = 1)
anaconda.dispatch.skipStep("timezone", permanent = 1)
anaconda.dispatch.skipStep("accounts", permanent = 1)
anaconda.dispatch.skipStep("tasksel", permanent = 1)
if os.path.exists('/tmp/manual-partitioning'):
anaconda.dispatch.skipStep("partition", skip = 0)
anaconda.dispatch.skipStep("autopartitionexecute",
skip = 1)
else:
anaconda.dispatch.skipStep("partition", skip = 1)
anaconda.dispatch.skipStep("autopartitionexecute",
skip = 0)
anaconda.dispatch.skipStep("group-selection", permanent = 1)
anaconda.dispatch.skipStep("complete", permanent = 1)
示例6: setGroupSelection
def setGroupSelection(self, anaconda):
BaseInstallClass.__init__(self, anaconda.backend)
anaconda.backend.unselectAll()
anaconda.backend.selectGroup("workstation-common", asMeta = 1)
anaconda.backend.selectGroup("gnome-desktop")
anaconda.backend.selectGroup("compat-arch-support", asMeta = 1, missingOk = 1)
示例7: __init__
def __init__(self):
BaseInstallClass.__init__(self)
示例8: setSteps
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("welcome", skip = 1)
示例9: configure
def configure(self, anaconda):
BaseInstallClass.configure(self, anaconda)
BaseInstallClass.setDefaultPartitioning(self,
anaconda.storage, anaconda.platform)
示例10: __init__
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
示例11: setSteps
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("partition")
dispatch.skipStep("desktopchoice", skip = 0)
dispatch.skipStep("package-selection", skip = 1)
示例12: setGroupSelection
def setGroupSelection(self, anaconda):
BaseInstallClass.setGroupSelection(self, anaconda)
anaconda.backend.selectGroup("core")
示例13: setInstallData
def setInstallData(self, anaconda):
BaseInstallClass.setInstallData(self, anaconda)
BaseInstallClass.setDefaultPartitioning(self, anaconda.id.partitions,
CLEARPART_TYPE_LINUX)
示例14: setSteps
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch)
if os.path.exists('/tmp/rocks-skip-welcome'):
dispatch.skipStep("welcome", skip = 1)
else:
dispatch.skipStep("welcome", skip = 0)
#
# parttype is a graphical screen
#
dispatch.skipStep("parttype", skip = 1)
dispatch.skipStep("partitiondone", skip = 0)
#
# bootloader is a graphical screen
#
dispatch.skipStep("bootloader", permanent = 1)
dispatch.skipStep("partitionobjinit", skip = 0)
if os.path.exists('/tmp/manual-partitioning'):
dispatch.skipStep("partition", skip = 0)
dispatch.skipStep("autopartitionexecute", skip = 1)
else:
dispatch.skipStep("partition", skip = 1)
dispatch.skipStep("autopartitionexecute", skip = 0)
dispatch.skipStep("group-selection", permanent = 1)
dispatch.skipStep("confirminstall", permanent = 1)
dispatch.skipStep("complete", permanent = 1)
from gui import stepToClass
from dispatch import installSteps
from rocks_getrolls import RocksGetRolls
from packages import turnOnFilesystems
#
# need to move the making of the file systems up before
# we download the rolls.
#
# rocks doesn't use the 'timezone' or 'accounts' screens,
# so we'll override them with our functions
#
index = 0
for key in installSteps:
if key[0] == "timezone":
break
index = index + 1
installSteps[index] = ("rocksenablefilesystems",
turnOnFilesystems,)
dispatch.skipStep("rocksenablefilesystems", skip = 0)
dispatch.skipStep("enablefilesystems", skip = 1)
index = 0
for key in installSteps:
if key[0] == "accounts":
break
index = index + 1
installSteps[index] = ("downloadrolls", RocksGetRolls,)
dispatch.skipStep("downloadrolls", skip = 0)
示例15: setSteps
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("partition")