from fermiinstallclass import FermiInstallClass import os class InstallClass(FermiInstallClass): name = ("CSS Workgroup Install") # pixmap = "workstation.png" pixmap = "css.png" sortPriority = 10 showLoginChoice = 1 description = ("Select this installation type if you belong " "to the CSS workgroup " ", this workgroup comes with Fermi kerberos.") def setGroupSelection(self, comps, intf): FermiInstallClass.__init__(self, comps) comps["Fermi Desktop Large Onsite"].includeMembers() comps["CSS"].select() def setSteps(self, dispatch): FermiInstallClass.setSteps(self, dispatch); dispatch.skipStep("bootdisk", skip = 1) dispatch.skipStep("makebootdisk", skip = 1) dispatch.skipStep("timezone")