Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 294167 Details for
Bug 431781
tasks, default group selection, centos patches
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
server installclass
realmlinux_server.py (text/plain), 3.36 KB, created by
Jack Neely
on 2008-02-06 22:14:32 UTC
(
hide
)
Description:
server installclass
Filename:
MIME Type:
Creator:
Jack Neely
Created:
2008-02-06 22:14:32 UTC
Size:
3.36 KB
patch
obsolete
>#!/usr/bin/python ># ># realmlinux_server.py - RHEL Server Installclass ># ># Copyright 2007 NC State University ># Written by Jack Neely <jjneely@ncsu.edu> ># ># SDG ># ># This program is free software; you can redistribute it and/or modify ># it under the terms of the GNU General Public License as published by ># the Free Software Foundation; either version 2 of the License, or ># (at your option) any later version. ># ># This program is distributed in the hope that it will be useful, ># but WITHOUT ANY WARRANTY; without even the implied warranty of ># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ># GNU General Public License for more details. ># ># You should have received a copy of the GNU General Public License ># along with this program; if not, write to the Free Software ># Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. > >from realmlinux_centos import InstallClass as BaseInstallClass >from constants import * >from rhpl.translate import N_, _ > >import types >import logging > >log = logging.getLogger("anaconda") > >class InstallClass(BaseInstallClass): > name = N_("Realm Linux Server 5") > > hidden = not productPath == 'Server' > > tasks = [(N_("Desktop - Gnome "), ["graphics", "office", "games", "sound-and-video","base-x","gnome-desktop","graphical-internet","printing"]), > (N_("Desktop - KDE "), ["graphics", "office", "games", "sound-and-video","base-x","kde-desktop","graphical-internet","printing"]), > (N_("Software Development"), ["development-libs", "development-tools", "gnome-software-development", "x-software-development"],), > (N_("Web Server"), ["web-server"]), > (N_("Server - GUI "), ["server-cfg", "dns-server", "web-server", "ftp-server", "smb-server", "mail-server", "network-server", "legacy-network-server", "news-server", "base-x", "gnome-desktop", "admin-tools"]), > (N_("Virtualization"), ["virtualization"]), > #(N_("Clustering"), ["clustering"]), > #(N_("Storage Clustering"), ["cluster-storage"]), > ] > > def setSteps(self, dispatch): > BaseInstallClass.setSteps(self, dispatch); > dispatch.skipStep("regkey", skip = 1) > > def setGroupSelection(self, anaconda): > BaseInstallClass.setGroupSelection(self, anaconda) > > # in RHEL the VT stuff is default. Let's let folks chose to be > # under the hypervisor > anaconda.backend.deselectGroup('virtualization') > > # *grumble**hate**grumble* > def getPackagePaths(self, uri): > self.repopaths = { "base": "%s" % productPath } > if productPath == 'Server': > #self.repopaths["cluster"] = "Cluster" > #self.repopaths["clusterstorage"] = "ClusterStorage" > self.repopaths["virt"] = "VT" > elif productPath == 'Client': > self.repopaths["workstation"] = "Workstation" > self.repopaths["virt"] = "VT" > else: > raise StandardError, "I don't understand what distribution this is." > > rc = {} > for (name, path) in self.repopaths.items(): > if not type(uri) == types.ListType: > uri = [uri,] > if not type(path) == types.ListType: > path = [path,] > > lst = [] > for i in uri: > for p in path: > lst.append("%s/%s" % (i, p)) > > rc[name] = lst > > log.info("package paths is %s" %(rc,)) > return rc >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 431781
:
294165
|
294166
| 294167 |
294168