from fermiinstallclass import FermiInstallClass

class InstallClass(FermiInstallClass):
    name = ("Astro Workgroup Install")
    pixmap = "astro.png"
    sortPriority = 10
    showLoginChoice = 1
    description = ("This will install the Astro workgroup.")

    def setGroupSelection(self, comps, intf):
	FermiInstallClass.setGroupSelection(self, comps, intf)

        comps["Astro"].select()

    def setSteps(self, dispatch):
	FermiInstallClass.setSteps(self, dispatch);
	dispatch.skipStep("makebootdisk")
	dispatch.skipStep("bootdisk")

