本文整理汇总了Python中installclass.BaseInstallClass.setSteps方法的典型用法代码示例。如果您正苦于以下问题:Python BaseInstallClass.setSteps方法的具体用法?Python BaseInstallClass.setSteps怎么用?Python BaseInstallClass.setSteps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类installclass.BaseInstallClass
的用法示例。
在下文中一共展示了BaseInstallClass.setSteps方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
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: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
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)
示例3: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
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: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("partition")
dispatch.skipStep("regkey", skip = 1)
示例5: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("welcome", skip = 1)
示例6: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch);
dispatch.skipStep("partition")
dispatch.skipStep("desktopchoice", skip = 0)
dispatch.skipStep("package-selection", skip = 1)
示例7: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("partition")
anaconda.dispatch.skipStep("betanag",permanent=1)
示例8: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
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)
示例9: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, anaconda):
BaseInstallClass.setSteps(self, anaconda)
anaconda.dispatch.skipStep("partition")
示例10: setSteps
# 需要导入模块: from installclass import BaseInstallClass [as 别名]
# 或者: from installclass.BaseInstallClass import setSteps [as 别名]
def setSteps(self, dispatch):
BaseInstallClass.setSteps(self, dispatch)