1 |
slords |
1.1 |
diff -uNr anaconda-11.1.2.36__orig/installclasses/rhel.py anaconda-11.1.2.36/installclasses/rhel.py |
2 |
|
|
--- anaconda-11.1.2.36__orig/installclasses/rhel.py 2007-04-10 10:27:22.000000000 +0100 |
3 |
|
|
+++ anaconda-11.1.2.36/installclasses/rhel.py 2007-04-10 10:28:33.000000000 +0100 |
4 |
|
|
@@ -42,6 +42,9 @@ |
5 |
|
|
skipkeytext = N_("If you're unable to locate the Installation Number, " |
6 |
|
|
"for packages not included in your subscription.") |
7 |
|
|
|
8 |
|
|
+ repos = { |
9 |
|
|
+ "Packages from CentOS Extras": (None, "http://mirrorlist.centos.org/?release=5&arch=%s&repo=extras" %(rpmUtils.arch.getBaseArch() )) } |
10 |
|
|
+ |
11 |
|
|
|
12 |
|
|
def setInstallData(self, anaconda): |
13 |
|
|
BaseInstallClass.setInstallData(self, anaconda) |
14 |
|
|
diff -uNr anaconda-11.1.2.36__orig/installclasses/rhel.py anaconda-11.1.2.36/installclasses/rhel.py |
15 |
|
|
--- anaconda-11.1.2.36__orig/installclasses/rhel.py 2007-04-10 20:21:08.000000000 +0100 |
16 |
|
|
+++ anaconda-11.1.2.36/installclasses/rhel.py 2007-04-10 20:21:54.000000000 +0100 |
17 |
|
|
@@ -14,6 +14,8 @@ |
18 |
|
|
import logging |
19 |
|
|
log = logging.getLogger("anaconda") |
20 |
|
|
|
21 |
|
|
+import rpmUtils.arch |
22 |
|
|
+ |
23 |
|
|
# custom installs are easy :-) |
24 |
|
|
class InstallClass(BaseInstallClass): |
25 |
|
|
# name has underscore used for mnemonics, strip if you dont need it |