/[smeserver]/rpms/anaconda/sme9/anaconda-centos-installclass.patch
ViewVC logotype

Annotation of /rpms/anaconda/sme9/anaconda-centos-installclass.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Thu Jul 4 04:01:04 2013 UTC (10 years, 11 months ago) by wellsi
Branch: MAIN
CVS Tags: anaconda-13_21_195-1_el6_sme_1, anaconda-13_21_229-1_el6_sme_3, anaconda-13_21_229-1_el6_sme_2, anaconda-13_21_229-1_el6_sme_1, anaconda-13_21_215-1_el6_sme, anaconda-13_21_215-1_el6_centos, anaconda-13_21_215-1_el6_sme_4, anaconda-13_21_215-1_el6_sme_10, anaconda-13_21_215-1_el6_sme_11, anaconda-13_21_215-1_el6_sme_12, anaconda-13_21_215-1_el6_sme_8, anaconda-13_21_215-1_el6_sme_9, anaconda-13_21_215-1_el6_sme_6, anaconda-13_21_215-1_el6_sme_7, anaconda-13_21_215-1_el6_sme_5, anaconda-13_21_215-1_el6_sme_1
Branch point for: upstream
* Mon Feb 25 2013 Karanbir Singh <kbsingh@centos.org> - 13.21.195.1.el6.centos.1
- Build for CentOS-6.4
- Remove upstream branding from unsupported hardware report (#5863 kevbo)

1 wellsi 1.1 diff -uNr anaconda-13.21.195__orig/installclasses/rhel.py anaconda-13.21.195/installclasses/rhel.py
2     --- anaconda-13.21.195__orig/installclasses/rhel.py 2012-11-26 20:42:02.000000000 +0000
3     +++ anaconda-13.21.195/installclasses/rhel.py 2013-03-01 23:02:13.665813204 +0000
4     @@ -29,20 +29,78 @@
5    
6     class InstallClass(BaseInstallClass):
7     # name has underscore used for mnemonics, strip if you dont need it
8     - id = "rhel"
9     - name = N_("Red Hat Enterprise Linux")
10     + id = "centos"
11     + name = N_("CentOS Linux")
12     _description = N_("The default installation of %s is a minimum install. "
13     "You can optionally select a different set of software "
14     "now.")
15     _descriptionFields = (productName,)
16     - sortPriority = 10000
17     - hidden = 1
18     + sortPriority = 10005
19     + hidden = 0
20    
21     bootloaderTimeoutDefault = 5
22     bootloaderExtraArgs = ["crashkernel=auto"]
23    
24     - tasks = [(N_("Minimal"),
25     - ["core"])]
26     + tasks = [(N_("Desktop"),
27     + ["base", "core", "debugging",
28     + "directory-client", "java-platform", "network-file-system-client",
29     + "server-platform",
30     + "fonts", "print-client",
31     + "basic-desktop", "desktop-debugging", "desktop-platform",
32     + "general-desktop", "graphical-admin-tools", "input-methods",
33     + "legacy-x", "x11", "internet-applications", "internet-browser", "office-suite",
34     + "remote-desktop-clients"]),
35     + (N_("Minimal Desktop"),
36     + ["base", "core", "debugging",
37     + "directory-client", "java-platform", "network-file-system-client",
38     + "server-platform",
39     + "fonts", "print-client",
40     + "basic-desktop", "desktop-debugging", "desktop-platform",
41     + "input-methods",
42     + "legacy-x", "x11", "internet-browser",
43     + "remote-desktop-clients"]),
44     + (N_("Minimal"),
45     + ["core"]),
46     + (N_("Basic Server"),
47     + ["base", "console-internet", "core", "debugging",
48     + "directory-client", "hardware-monitoring", "java-platform",
49     + "large-systems", "network-file-system-client",
50     + "performance", "perl-runtime", "server-platform"]),
51     + (N_("Database Server"),
52     + ["base", "console-internet", "core", "debugging",
53     + "directory-client", "hardware-monitoring", "java-platform",
54     + "large-systems", "network-file-system-client",
55     + "performance", "perl-runtime", "server-platform",
56     + "mysql-client", "mysql", "postgresql-client", "postgresql",
57     + "system-admin-tools"]),
58     + (N_("Web Server"),
59     + ["base", "console-internet", "core", "debugging",
60     + "directory-client", "java-platform",
61     + "network-file-system-client",
62     + "performance", "perl-runtime", "server-platform",
63     + "web-server", "web-servlet", "php", "turbogears",
64     + "mysql-client", "postgresql-client"]),
65     + (N_("Virtual Host"),
66     + ["base", "console-internet", "core", "debugging",
67     + "directory-client", "hardware-monitoring", "java-platform",
68     + "large-systems", "network-file-system-client",
69     + "performance", "perl-runtime", "server-platform",
70     + "virtualization", "virtualization-client",
71     + "virtualization-platform"]),
72     + (N_("Software Development Workstation"),
73     + ["base", "core", "debugging",
74     + "directory-client", "java-platform", "network-file-system-client",
75     + "performance", "perl-runtime", "server-platform",
76     + "fonts", "print-client",
77     + "basic-desktop", "desktop-debugging", "desktop-platform",
78     + "general-desktop", "graphical-admin-tools", "input-methods",
79     + "legacy-x", "x11", "internet-browser", "graphics", "emacs", "tex",
80     + "remote-desktop-clients", "virtualization", "virtualization-client",
81     + "virtualization-platform",
82     + "desktop-platform-devel", "development", "eclipse",
83     + "server-platform-devel", "technical-writing",
84     + "additional-devel"])]
85     +
86    
87     def getPackagePaths(self, uri):
88     if not type(uri) == types.ListType:
89     @@ -59,6 +117,7 @@
90     def setSteps(self, anaconda):
91     BaseInstallClass.setSteps(self, anaconda)
92     anaconda.dispatch.skipStep("partition")
93     + anaconda.dispatch.skipStep("betanag",permanent=1)
94    
95     def getBackend(self):
96     if flags.livecdInstall:
97     @@ -75,6 +134,7 @@
98     return True
99    
100     productUpgrades = {
101     + "CentOS": ("CentOS release", ),
102     "Red Hat Enterprise Linux AS": ("Red Hat Linux Advanced Server", ),
103     "Red Hat Enterprise Linux WS": ("Red Hat Linux Advanced Workstation",),
104     # FIXME: this probably shouldn't be in a release...
105     Binary files anaconda-13.21.195__orig/installclasses/.rhel.py.swp and anaconda-13.21.195/installclasses/.rhel.py.swp differ

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed