diff -uNr anaconda-10.1.1.19.orig/anaconda.conf anaconda-10.1.1.19/anaconda.conf --- anaconda-10.1.1.19.orig/anaconda.conf 2001-06-21 14:01:59.000000000 -0500 +++ anaconda-10.1.1.19/anaconda.conf 2005-06-09 12:14:27.000000000 -0500 @@ -9,5 +9,5 @@ Splashscreen pixmaps/first.png WelcomeScreen pixmaps/splash.png TitleBar pixmaps/anaconda_header.png -Title Red Hat Linux Beta +Title CentOS diff -uNr anaconda-10.1.1.19.orig/constants.py anaconda-10.1.1.19/constants.py --- anaconda-10.1.1.19.orig/constants.py 2004-12-03 16:13:38.000000000 -0600 +++ anaconda-10.1.1.19/constants.py 2005-06-09 12:14:27.000000000 -0500 @@ -74,10 +74,10 @@ "full text of this exception or save the crash " "dump to a floppy then file a detailed bug " "report against anaconda at " - "http://bugzilla.redhat.com/bugzilla/") + "http://www.centos.org/bugs/") exceptionTextNoFloppy = N_("An unhandled exception has occurred. This " "is most likely a bug. Please copy the " "full text of this exception and file a detailed " "bug report against anaconda at " - "http://bugzilla.redhat.com/bugzilla/") + "http://www.centos.org/bugs/") diff -uNr anaconda-10.1.1.19.orig/hdrlist.py anaconda-10.1.1.19/hdrlist.py --- anaconda-10.1.1.19.orig/hdrlist.py 2004-07-29 14:34:55.000000000 -0500 +++ anaconda-10.1.1.19/hdrlist.py 2005-06-09 12:14:27.000000000 -0500 @@ -1067,7 +1067,7 @@ hdrs = rpm.readHeaderListFromFD(fd) os.close(fd) showMem() -# fd = os.open(tree + "/RedHat/base/hdlist2", os.O_RDONLY) +# fd = os.open(tree + "/CentOS/base/hdlist2", os.O_RDONLY) # rpm.mergeHeaderListFromFD(hdrs, fd, 1000004) # os.close(fd) showMem() diff -uNr anaconda-10.1.1.19.orig/image.py anaconda-10.1.1.19/image.py --- anaconda-10.1.1.19.orig/image.py 2004-11-30 22:21:17.000000000 -0600 +++ anaconda-10.1.1.19/image.py 2005-06-09 12:14:27.000000000 -0500 @@ -455,7 +455,7 @@ if num not in discNum or discArch != arch: continue - # if it's disc1, it needs to have RedHat/base/stage2.img + # if it's disc1, it needs to have CentOS/base/stage2.img if (num == 1 and not os.access("/mnt/cdimage/%s/base/stage2.img" % (productPath,), os.R_OK)): diff -uNr anaconda-10.1.1.19.orig/loader2/cdinstall.c anaconda-10.1.1.19/loader2/cdinstall.c --- anaconda-10.1.1.19.orig/loader2/cdinstall.c 2004-12-03 16:20:49.000000000 -0600 +++ anaconda-10.1.1.19/loader2/cdinstall.c 2005-06-09 12:14:27.000000000 -0500 @@ -391,7 +391,7 @@ } /* try to find a Red Hat CD non-interactively */ -char * findRedHatCD(char * location, +char * findCentOSCD(char * location, moduleInfoSet modInfo, moduleList modLoaded, moduleDeps modDeps, diff -uNr anaconda-10.1.1.19.orig/loader2/cdinstall.h anaconda-10.1.1.19/loader2/cdinstall.h --- anaconda-10.1.1.19.orig/loader2/cdinstall.h 2003-11-21 18:12:14.000000000 -0600 +++ anaconda-10.1.1.19/loader2/cdinstall.h 2005-06-09 12:14:27.000000000 -0500 @@ -8,7 +8,7 @@ moduleInfoSet modInfo, moduleList modLoaded, moduleDeps * modDepsPtr, int flags); -char * findRedHatCD(char * location, +char * findCentOSCD(char * location, moduleInfoSet modInfo, moduleList modLoaded, moduleDeps modDeps, diff -uNr anaconda-10.1.1.19.orig/loader2/loader.c anaconda-10.1.1.19/loader2/loader.c --- anaconda-10.1.1.19.orig/loader2/loader.c 2005-01-06 13:35:32.000000000 -0600 +++ anaconda-10.1.1.19/loader2/loader.c 2005-06-09 12:14:27.000000000 -0500 @@ -198,7 +198,7 @@ f = fopen("/.buildstamp", "r"); if (!f) { productName = strdup("anaconda"); - productPath = strdup("RedHat"); + productPath = strdup("CentOS"); } else { productName = malloc(256); productPath = malloc(256); @@ -783,7 +783,7 @@ * we can fast-path the CD and not make people answer questions in * text mode. */ if (!FL_ASKMETHOD(flags) && !FL_KICKSTART(flags)) { - url = findRedHatCD(location, modInfo, modLoaded, * modDepsPtr, flags, !FL_RESCUE(flags)); + url = findCentOSCD(location, modInfo, modLoaded, * modDepsPtr, flags, !FL_RESCUE(flags)); /* if we found a CD and we're not in rescue or vnc mode return */ /* so we can short circuit straight to stage 2 from CD */ if (url && (!FL_RESCUE(flags) && !hasGraphicalOverride())) diff -uNr anaconda-10.1.1.19.orig/loader2/urlinstall.c anaconda-10.1.1.19/loader2/urlinstall.c --- anaconda-10.1.1.19.orig/loader2/urlinstall.c 2004-10-18 09:33:55.000000000 -0500 +++ anaconda-10.1.1.19/loader2/urlinstall.c 2005-06-09 12:14:27.000000000 -0500 @@ -46,7 +46,7 @@ char * newFile = NULL; char filepath[1024]; - /* BNFIXME: hack - all callers want RedHat/, so add prefix here */ + /* BNFIXME: hack - all callers want CentOS/, so add prefix here */ snprintf(filepath, sizeof(filepath), "%s/%s", getProductPath(), file); fd = urlinstStartTransfer(ui, filepath, NULL, 1, flags); @@ -268,7 +268,7 @@ /* ok messy - see if we have a stage2 on local CD */ /* before trying to pull one over network */ - cdurl = findRedHatCD(location, modInfo, modLoaded, + cdurl = findCentOSCD(location, modInfo, modLoaded, *modDeps, flags, 0); if (cdurl && (loadSingleUrlImage(&ui, "base/hdlist", flags, NULL, diff -uNr anaconda-10.1.1.19.orig/Makefile anaconda-10.1.1.19/Makefile --- anaconda-10.1.1.19.orig/Makefile 2004-11-05 10:54:21.000000000 -0600 +++ anaconda-10.1.1.19/Makefile 2005-06-09 12:14:27.000000000 -0500 @@ -14,7 +14,7 @@ endif # DESTDIR - destination for install image for install purposes -DESTDIR = ../../../RedHat/instimage +DESTDIR = ../../../CentOS/instimage CATALOGS = po/anaconda.pot diff -uNr anaconda-10.1.1.19.orig/packages.py anaconda-10.1.1.19/packages.py --- anaconda-10.1.1.19.orig/packages.py 2005-01-11 15:06:51.000000000 -0600 +++ anaconda-10.1.1.19/packages.py 2005-06-09 12:14:27.000000000 -0500 @@ -1527,7 +1527,7 @@ "from testers, and it is not suitable " "for day to day usage.\n\n" "To report feedback, please visit:\n\n" - " http://bugzilla.redhat.com/bugzilla\n\n" + " http://www.centos.orrg/bugs\n\n" "and file a report against '%s'.\n" %(productName, fileagainst)), type="custom", custom_icon="warning", diff -uNr anaconda-10.1.1.19.orig/partedUtils.py anaconda-10.1.1.19/partedUtils.py --- anaconda-10.1.1.19.orig/partedUtils.py 2005-01-04 19:59:35.000000000 -0600 +++ anaconda-10.1.1.19/partedUtils.py 2005-06-09 12:14:27.000000000 -0500 @@ -453,7 +453,7 @@ return None -def getRedHatReleaseString(mountpoint): +def getCentOSReleaseString(mountpoint): if os.access(mountpoint + "/etc/redhat-release", os.R_OK): f = open(mountpoint + "/etc/redhat-release", "r") try: @@ -599,7 +599,7 @@ if found: if os.access (mountpoint + '/etc/fstab', os.R_OK): - relstr = getRedHatReleaseString(mountpoint) + relstr = getCentOSReleaseString(mountpoint) cmdline = open('/proc/cmdline', 'r').read() if ((cmdline.find("upgradeany") != -1) or @@ -625,7 +625,7 @@ if found: if os.access (mountpoint + '/etc/fstab', os.R_OK): - relstr = getRedHatReleaseString(mountpoint) + relstr = getCentOSReleaseString(mountpoint) cmdline = open('/proc/cmdline', 'r').read() if ((cmdline.find("upgradeany") != -1) or @@ -662,7 +662,7 @@ part = disk.next_partition(part) continue if os.access (mountpoint + '/etc/fstab', os.R_OK): - relstr = getRedHatReleaseString(mountpoint) + relstr = getCentOSReleaseString(mountpoint) cmdline = open('/proc/cmdline', 'r').read() if ((cmdline.find("upgradeany") != -1) or diff -uNr anaconda-10.1.1.19.orig/po/am.po anaconda-10.1.1.19/po/am.po --- anaconda-10.1.1.19.orig/po/am.po 2004-09-30 16:10:14.000000000 -0500 +++ anaconda-10.1.1.19/po/am.po 2005-06-09 12:14:27.000000000 -0500 @@ -1930,7 +1930,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/anaconda.pot anaconda-10.1.1.19/po/anaconda.pot --- anaconda-10.1.1.19.orig/po/anaconda.pot 2004-09-30 16:10:14.000000000 -0500 +++ anaconda-10.1.1.19/po/anaconda.pot 2005-06-09 12:14:27.000000000 -0500 @@ -1929,7 +1929,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/ar.po anaconda-10.1.1.19/po/ar.po --- anaconda-10.1.1.19.orig/po/ar.po 2004-10-04 14:23:32.000000000 -0500 +++ anaconda-10.1.1.19/po/ar.po 2005-06-09 12:14:27.000000000 -0500 @@ -2249,8 +2249,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/be.po anaconda-10.1.1.19/po/be.po --- anaconda-10.1.1.19.orig/po/be.po 2004-09-30 16:10:14.000000000 -0500 +++ anaconda-10.1.1.19/po/be.po 2005-06-09 12:14:27.000000000 -0500 @@ -1,5 +1,5 @@ # Беларускі пераклад anaconda. -# Copyright (C) 2004 Red Hat, Inc. +# Copyright Released via the GPL # This file is distributed under the same license as the anaconda package. # Ales Nyakhaychyk , 2004. # @@ -2087,8 +2087,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/bg.po anaconda-10.1.1.19/po/bg.po --- anaconda-10.1.1.19.orig/po/bg.po 2004-10-12 12:23:23.000000000 -0500 +++ anaconda-10.1.1.19/po/bg.po 2005-06-09 12:14:27.000000000 -0500 @@ -2324,8 +2324,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/bn.po anaconda-10.1.1.19/po/bn.po --- anaconda-10.1.1.19.orig/po/bn.po 2004-12-08 03:58:21.000000000 -0600 +++ anaconda-10.1.1.19/po/bn.po 2005-06-09 12:14:27.000000000 -0500 @@ -2551,8 +2551,8 @@ #: ../text.py:360 #, python-format # modified for RHEL -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 # modified for RHEL diff -uNr anaconda-10.1.1.19.orig/po/ca.po anaconda-10.1.1.19/po/ca.po --- anaconda-10.1.1.19.orig/po/ca.po 2004-10-18 08:05:21.000000000 -0500 +++ anaconda-10.1.1.19/po/ca.po 2005-06-09 12:14:27.000000000 -0500 @@ -2336,8 +2336,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/cs.po anaconda-10.1.1.19/po/cs.po --- anaconda-10.1.1.19.orig/po/cs.po 2004-09-30 18:21:40.000000000 -0500 +++ anaconda-10.1.1.19/po/cs.po 2005-06-09 12:14:27.000000000 -0500 @@ -2294,7 +2294,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/cy.po anaconda-10.1.1.19/po/cy.po --- anaconda-10.1.1.19.orig/po/cy.po 2004-10-26 05:35:18.000000000 -0500 +++ anaconda-10.1.1.19/po/cy.po 2005-06-09 12:14:27.000000000 -0500 @@ -2295,8 +2295,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (H)(C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s (H)Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/da.po anaconda-10.1.1.19/po/da.po --- anaconda-10.1.1.19.orig/po/da.po 2004-10-01 02:23:14.000000000 -0500 +++ anaconda-10.1.1.19/po/da.po 2005-06-09 12:14:27.000000000 -0500 @@ -2297,7 +2297,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/de.po anaconda-10.1.1.19/po/de.po --- anaconda-10.1.1.19.orig/po/de.po 2004-10-18 16:39:18.000000000 -0500 +++ anaconda-10.1.1.19/po/de.po 2005-06-09 12:14:27.000000000 -0500 @@ -2388,8 +2388,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/el.po anaconda-10.1.1.19/po/el.po --- anaconda-10.1.1.19.orig/po/el.po 2004-09-30 16:10:15.000000000 -0500 +++ anaconda-10.1.1.19/po/el.po 2005-06-09 12:14:27.000000000 -0500 @@ -2086,7 +2086,7 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s (C) 2003 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/en_GB.po anaconda-10.1.1.19/po/en_GB.po --- anaconda-10.1.1.19.orig/po/en_GB.po 2004-10-24 21:02:27.000000000 -0500 +++ anaconda-10.1.1.19/po/en_GB.po 2005-06-09 12:14:27.000000000 -0500 @@ -2534,8 +2534,8 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 #, fuzzy diff -uNr anaconda-10.1.1.19.orig/po/es.po anaconda-10.1.1.19/po/es.po --- anaconda-10.1.1.19.orig/po/es.po 2004-11-01 22:37:52.000000000 -0600 +++ anaconda-10.1.1.19/po/es.po 2005-06-09 12:14:27.000000000 -0500 @@ -3396,8 +3396,8 @@ # ../text.py:301 #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" # ../text.py:303 # ../text.py:303 diff -uNr anaconda-10.1.1.19.orig/po/et.po anaconda-10.1.1.19/po/et.po --- anaconda-10.1.1.19.orig/po/et.po 2004-10-01 08:39:38.000000000 -0500 +++ anaconda-10.1.1.19/po/et.po 2005-06-09 12:14:27.000000000 -0500 @@ -2196,8 +2196,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/eu_ES.po anaconda-10.1.1.19/po/eu_ES.po --- anaconda-10.1.1.19.orig/po/eu_ES.po 2004-09-30 16:10:17.000000000 -0500 +++ anaconda-10.1.1.19/po/eu_ES.po 2005-06-09 12:14:27.000000000 -0500 @@ -2484,7 +2484,7 @@ # ../text.py:841 #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "Red Hat Linux (C) 2000 Red Hat, Inc." # ../text.py:844 diff -uNr anaconda-10.1.1.19.orig/po/fa.po anaconda-10.1.1.19/po/fa.po --- anaconda-10.1.1.19.orig/po/fa.po 2004-09-30 16:10:17.000000000 -0500 +++ anaconda-10.1.1.19/po/fa.po 2005-06-09 12:14:27.000000000 -0500 @@ -2300,7 +2300,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s (C) ۲۰۰۴ شرکت ردهت." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/fi.po anaconda-10.1.1.19/po/fi.po --- anaconda-10.1.1.19.orig/po/fi.po 2004-09-30 16:10:17.000000000 -0500 +++ anaconda-10.1.1.19/po/fi.po 2005-06-09 12:14:27.000000000 -0500 @@ -2643,7 +2643,7 @@ # ../text.py:301 #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc. " # ../text.py:304 diff -uNr anaconda-10.1.1.19.orig/po/fr.po anaconda-10.1.1.19/po/fr.po --- anaconda-10.1.1.19.orig/po/fr.po 2004-10-28 20:10:41.000000000 -0500 +++ anaconda-10.1.1.19/po/fr.po 2005-06-09 12:14:27.000000000 -0500 @@ -2360,8 +2360,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/gl.po anaconda-10.1.1.19/po/gl.po --- anaconda-10.1.1.19.orig/po/gl.po 2004-09-30 16:10:18.000000000 -0500 +++ anaconda-10.1.1.19/po/gl.po 2005-06-09 12:14:27.000000000 -0500 @@ -2157,7 +2157,7 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/gu.po anaconda-10.1.1.19/po/gu.po --- anaconda-10.1.1.19.orig/po/gu.po 2004-12-09 22:46:12.000000000 -0600 +++ anaconda-10.1.1.19/po/gu.po 2005-06-09 12:14:27.000000000 -0500 @@ -2251,8 +2251,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/he.po anaconda-10.1.1.19/po/he.po --- anaconda-10.1.1.19.orig/po/he.po 2004-09-30 16:10:18.000000000 -0500 +++ anaconda-10.1.1.19/po/he.po 2005-06-09 12:14:27.000000000 -0500 @@ -1929,7 +1929,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/hi.po anaconda-10.1.1.19/po/hi.po --- anaconda-10.1.1.19.orig/po/hi.po 2004-11-05 03:25:13.000000000 -0600 +++ anaconda-10.1.1.19/po/hi.po 2005-06-09 12:14:27.000000000 -0500 @@ -2247,8 +2247,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/hr.po anaconda-10.1.1.19/po/hr.po --- anaconda-10.1.1.19.orig/po/hr.po 2004-09-30 16:10:18.000000000 -0500 +++ anaconda-10.1.1.19/po/hr.po 2005-06-09 12:14:27.000000000 -0500 @@ -2313,7 +2313,7 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s (C) 2003 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/hu.po anaconda-10.1.1.19/po/hu.po --- anaconda-10.1.1.19.orig/po/hu.po 2004-10-01 14:12:07.000000000 -0500 +++ anaconda-10.1.1.19/po/hu.po 2005-06-09 12:14:27.000000000 -0500 @@ -2308,7 +2308,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s (C) Red Hat, Inc., 2004." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/id.po anaconda-10.1.1.19/po/id.po --- anaconda-10.1.1.19.orig/po/id.po 2004-11-01 03:18:53.000000000 -0600 +++ anaconda-10.1.1.19/po/id.po 2005-06-09 12:14:27.000000000 -0500 @@ -2157,8 +2157,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/is.po anaconda-10.1.1.19/po/is.po --- anaconda-10.1.1.19.orig/po/is.po 2004-10-22 23:21:17.000000000 -0500 +++ anaconda-10.1.1.19/po/is.po 2005-06-09 12:14:27.000000000 -0500 @@ -2296,8 +2296,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/it.po anaconda-10.1.1.19/po/it.po --- anaconda-10.1.1.19.orig/po/it.po 2004-11-04 17:08:54.000000000 -0600 +++ anaconda-10.1.1.19/po/it.po 2005-06-09 12:14:27.000000000 -0500 @@ -2342,8 +2342,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/ja.po anaconda-10.1.1.19/po/ja.po --- anaconda-10.1.1.19.orig/po/ja.po 2004-10-28 19:25:20.000000000 -0500 +++ anaconda-10.1.1.19/po/ja.po 2005-06-09 12:14:27.000000000 -0500 @@ -2284,8 +2284,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr " %s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr " %s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/ka.po anaconda-10.1.1.19/po/ka.po --- anaconda-10.1.1.19.orig/po/ka.po 2004-09-30 16:10:20.000000000 -0500 +++ anaconda-10.1.1.19/po/ka.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/ko.po anaconda-10.1.1.19/po/ko.po --- anaconda-10.1.1.19.orig/po/ko.po 2004-11-02 18:33:50.000000000 -0600 +++ anaconda-10.1.1.19/po/ko.po 2005-06-09 12:14:27.000000000 -0500 @@ -2284,8 +2284,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/ku.po anaconda-10.1.1.19/po/ku.po --- anaconda-10.1.1.19.orig/po/ku.po 2004-09-30 16:10:20.000000000 -0500 +++ anaconda-10.1.1.19/po/ku.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/lo.po anaconda-10.1.1.19/po/lo.po --- anaconda-10.1.1.19.orig/po/lo.po 2004-09-30 16:10:20.000000000 -0500 +++ anaconda-10.1.1.19/po/lo.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/lt.po anaconda-10.1.1.19/po/lt.po --- anaconda-10.1.1.19.orig/po/lt.po 2004-09-30 16:10:20.000000000 -0500 +++ anaconda-10.1.1.19/po/lt.po 2005-06-09 12:14:27.000000000 -0500 @@ -1971,8 +1971,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/mk.po anaconda-10.1.1.19/po/mk.po --- anaconda-10.1.1.19.orig/po/mk.po 2004-10-18 14:53:47.000000000 -0500 +++ anaconda-10.1.1.19/po/mk.po 2005-06-09 12:14:27.000000000 -0500 @@ -2335,8 +2335,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/mr.po anaconda-10.1.1.19/po/mr.po --- anaconda-10.1.1.19.orig/po/mr.po 2004-09-30 16:10:23.000000000 -0500 +++ anaconda-10.1.1.19/po/mr.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/ms.po anaconda-10.1.1.19/po/ms.po --- anaconda-10.1.1.19.orig/po/ms.po 2004-10-06 22:21:06.000000000 -0500 +++ anaconda-10.1.1.19/po/ms.po 2005-06-09 12:14:27.000000000 -0500 @@ -2294,8 +2294,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/nb.po anaconda-10.1.1.19/po/nb.po --- anaconda-10.1.1.19.orig/po/nb.po 2004-10-05 07:10:35.000000000 -0500 +++ anaconda-10.1.1.19/po/nb.po 2005-06-09 12:14:27.000000000 -0500 @@ -2297,7 +2297,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/nl.po anaconda-10.1.1.19/po/nl.po --- anaconda-10.1.1.19.orig/po/nl.po 2004-09-30 16:10:23.000000000 -0500 +++ anaconda-10.1.1.19/po/nl.po 2005-06-09 12:14:27.000000000 -0500 @@ -2372,8 +2372,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/nn.po anaconda-10.1.1.19/po/nn.po --- anaconda-10.1.1.19.orig/po/nn.po 2004-09-30 16:10:23.000000000 -0500 +++ anaconda-10.1.1.19/po/nn.po 2005-06-09 12:14:27.000000000 -0500 @@ -2034,7 +2034,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/no.po anaconda-10.1.1.19/po/no.po --- anaconda-10.1.1.19.orig/po/no.po 2004-10-05 07:11:01.000000000 -0500 +++ anaconda-10.1.1.19/po/no.po 2005-06-09 12:14:27.000000000 -0500 @@ -2297,7 +2297,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/pl.po anaconda-10.1.1.19/po/pl.po --- anaconda-10.1.1.19.orig/po/pl.po 2004-10-12 07:15:49.000000000 -0500 +++ anaconda-10.1.1.19/po/pl.po 2005-06-09 12:14:27.000000000 -0500 @@ -2307,8 +2307,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/pt_BR.po anaconda-10.1.1.19/po/pt_BR.po --- anaconda-10.1.1.19.orig/po/pt_BR.po 2004-11-08 21:17:54.000000000 -0600 +++ anaconda-10.1.1.19/po/pt_BR.po 2005-06-09 12:14:27.000000000 -0500 @@ -2363,8 +2363,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/pt.po anaconda-10.1.1.19/po/pt.po --- anaconda-10.1.1.19.orig/po/pt.po 2004-10-27 05:33:14.000000000 -0500 +++ anaconda-10.1.1.19/po/pt.po 2005-06-09 12:14:27.000000000 -0500 @@ -2381,8 +2381,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/ro.po anaconda-10.1.1.19/po/ro.po --- anaconda-10.1.1.19.orig/po/ro.po 2004-09-30 16:10:24.000000000 -0500 +++ anaconda-10.1.1.19/po/ro.po 2005-06-09 12:14:27.000000000 -0500 @@ -2342,8 +2342,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/si.po anaconda-10.1.1.19/po/si.po --- anaconda-10.1.1.19.orig/po/si.po 2004-09-30 16:10:25.000000000 -0500 +++ anaconda-10.1.1.19/po/si.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/sk.po anaconda-10.1.1.19/po/sk.po --- anaconda-10.1.1.19.orig/po/sk.po 2004-10-05 23:41:32.000000000 -0500 +++ anaconda-10.1.1.19/po/sk.po 2005-06-09 12:14:27.000000000 -0500 @@ -2182,7 +2182,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/sl.po anaconda-10.1.1.19/po/sl.po --- anaconda-10.1.1.19.orig/po/sl.po 2004-09-30 16:10:25.000000000 -0500 +++ anaconda-10.1.1.19/po/sl.po 2005-06-09 12:14:27.000000000 -0500 @@ -2305,8 +2305,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/sq.po anaconda-10.1.1.19/po/sq.po --- anaconda-10.1.1.19.orig/po/sq.po 2004-09-30 16:10:27.000000000 -0500 +++ anaconda-10.1.1.19/po/sq.po 2005-06-09 12:14:27.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/sr.po anaconda-10.1.1.19/po/sr.po --- anaconda-10.1.1.19.orig/po/sr.po 2004-09-30 16:10:27.000000000 -0500 +++ anaconda-10.1.1.19/po/sr.po 2005-06-09 12:14:27.000000000 -0500 @@ -2070,7 +2070,7 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "Red Hat Linux (C) 2001 Red Hat, Inc." #: ../text.py:367 @@ -6788,7 +6788,7 @@ "for %s? If you don't see the disk drive you're using listed here, press F2 " "to configure additional devices." msgstr "" -"Na kojoj particiji i u kom direktorijumu se nalaze RedHat/RPMS i RedHat/base " +"Na kojoj particiji i u kom direktorijumu se nalaze CentOS/RPMS i CentOS/base " "direktorijumi? Ako disk koji koristite nijke naveden ovde, pritisnite F2 da " "biste podesili dodatne uređaje." diff -uNr anaconda-10.1.1.19.orig/po/sv.po anaconda-10.1.1.19/po/sv.po --- anaconda-10.1.1.19.orig/po/sv.po 2004-10-04 17:45:49.000000000 -0500 +++ anaconda-10.1.1.19/po/sv.po 2005-06-09 12:14:28.000000000 -0500 @@ -2316,7 +2316,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s © 2004 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/ta.po anaconda-10.1.1.19/po/ta.po --- anaconda-10.1.1.19.orig/po/ta.po 2004-11-05 06:37:25.000000000 -0600 +++ anaconda-10.1.1.19/po/ta.po 2005-06-09 12:14:28.000000000 -0500 @@ -2208,8 +2208,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/th.po anaconda-10.1.1.19/po/th.po --- anaconda-10.1.1.19.orig/po/th.po 2004-09-30 16:10:28.000000000 -0500 +++ anaconda-10.1.1.19/po/th.po 2005-06-09 12:14:28.000000000 -0500 @@ -2238,8 +2238,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/tr.po anaconda-10.1.1.19/po/tr.po --- anaconda-10.1.1.19.orig/po/tr.po 2004-09-30 16:10:28.000000000 -0500 +++ anaconda-10.1.1.19/po/tr.po 2005-06-09 12:14:28.000000000 -0500 @@ -2304,8 +2304,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/uk.po anaconda-10.1.1.19/po/uk.po --- anaconda-10.1.1.19.orig/po/uk.po 2004-09-30 16:10:28.000000000 -0500 +++ anaconda-10.1.1.19/po/uk.po 2005-06-09 12:14:28.000000000 -0500 @@ -2294,8 +2294,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/po/ur.po anaconda-10.1.1.19/po/ur.po --- anaconda-10.1.1.19.orig/po/ur.po 2004-09-30 16:10:28.000000000 -0500 +++ anaconda-10.1.1.19/po/ur.po 2005-06-09 12:14:28.000000000 -0500 @@ -1928,7 +1928,7 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "" #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/vi.po anaconda-10.1.1.19/po/vi.po --- anaconda-10.1.1.19.orig/po/vi.po 2004-09-30 16:10:29.000000000 -0500 +++ anaconda-10.1.1.19/po/vi.po 2005-06-09 12:14:28.000000000 -0500 @@ -2265,7 +2265,7 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" msgstr "%s (C) 2003 Red Hat, Inc." #: ../text.py:367 diff -uNr anaconda-10.1.1.19.orig/po/zh_CN.po anaconda-10.1.1.19/po/zh_CN.po --- anaconda-10.1.1.19.orig/po/zh_CN.po 2004-10-06 23:39:23.000000000 -0500 +++ anaconda-10.1.1.19/po/zh_CN.po 2005-06-09 12:14:28.000000000 -0500 @@ -2181,8 +2181,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/zh_TW.po anaconda-10.1.1.19/po/zh_TW.po --- anaconda-10.1.1.19.orig/po/zh_TW.po 2004-09-30 19:09:07.000000000 -0500 +++ anaconda-10.1.1.19/po/zh_TW.po 2005-06-09 12:14:29.000000000 -0500 @@ -2191,8 +2191,8 @@ #: ../text.py:360 #, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid " for help | between elements | selects | next screen" diff -uNr anaconda-10.1.1.19.orig/po/zu.po anaconda-10.1.1.19/po/zu.po --- anaconda-10.1.1.19.orig/po/zu.po 2004-09-30 16:10:29.000000000 -0500 +++ anaconda-10.1.1.19/po/zu.po 2005-06-09 12:14:29.000000000 -0500 @@ -2305,8 +2305,8 @@ #: ../text.py:360 #, fuzzy, python-format -msgid "%s (C) 2004 Red Hat, Inc." -msgstr "%s (C) 2004 Red Hat, Inc." +msgid "%s Released via the GPL" +msgstr "%s Released via the GPL" #: ../text.py:367 msgid "" diff -uNr anaconda-10.1.1.19.orig/product.py anaconda-10.1.1.19/product.py --- anaconda-10.1.1.19.orig/product.py 2003-10-14 17:55:06.000000000 -0500 +++ anaconda-10.1.1.19/product.py 2005-06-09 12:14:29.000000000 -0500 @@ -22,14 +22,14 @@ if path is None: productName = "anaconda" productVersion = "bluesky" - productPath = "RedHat" + productPath = "CentOS" else: f = open(path, "r") lines = f.readlines() if len(lines) < 4: productName = "anaconda" productVersion = "bluesky" - productPath = "RedHat" + productPath = "CentOS" else: productName = lines[1][:-1] productVersion = lines[2][:-1] diff -uNr anaconda-10.1.1.19.orig/scripts/buildinstall anaconda-10.1.1.19/scripts/buildinstall --- anaconda-10.1.1.19.orig/scripts/buildinstall 2004-03-16 16:18:49.000000000 -0600 +++ anaconda-10.1.1.19/scripts/buildinstall 2005-06-09 12:14:29.000000000 -0500 @@ -7,7 +7,7 @@ COMPNAME=dist-7.0 RUN=1 -PRODUCTPATH="RedHat" +PRODUCTPATH="CentOS" while [ $# -gt 0 ]; do case $1 in diff -uNr anaconda-10.1.1.19.orig/scripts/check-repository.py anaconda-10.1.1.19/scripts/check-repository.py --- anaconda-10.1.1.19.orig/scripts/check-repository.py 2002-10-08 16:32:46.000000000 -0500 +++ anaconda-10.1.1.19/scripts/check-repository.py 2005-06-09 12:14:29.000000000 -0500 @@ -9,9 +9,9 @@ # # Checks RH comps, hdlist files and RPMS directory. I use: # -# /ftp/redhat-7.0/RedHat/base/comps -# /ftp/redhat-7.0/RedHat/base/hdlist -# /ftp/redhat-7.0/RedHat/RPMS/* +# /ftp/redhat-7.0/CentOS/base/comps +# /ftp/redhat-7.0/CentOS/base/hdlist +# /ftp/redhat-7.0/CentOS/RPMS/* # # So, you run this with 'check-repository.py /ftp/redhat-7.0' # @@ -59,15 +59,15 @@ def readComps(self, hdlist): cs = ComponentSet(self.path + - '/RedHat/base/comps', hdlist) + '/CentOS/base/comps', hdlist) return cs def getFilename(self, h): - return self.path + "/RedHat/RPMS/" + self.fnames[h] + return self.path + "/CentOS/RPMS/" + self.fnames[h] def readHeaders(self): hl = [] - path = self.path + "/RedHat/RPMS" + path = self.path + "/CentOS/RPMS" for n in os.listdir(path): fd = os.open(path + "/" + n, 0) try: diff -uNr anaconda-10.1.1.19.orig/scripts/mk-images anaconda-10.1.1.19/scripts/mk-images --- anaconda-10.1.1.19.orig/scripts/mk-images 2004-10-26 07:40:00.000000000 -0500 +++ anaconda-10.1.1.19/scripts/mk-images 2005-06-09 12:14:29.000000000 -0500 @@ -18,7 +18,7 @@ PRODUCT=$6 VERSION=$7 if [ -z "$8" ]; then - PRODUCTPATH="RedHat" + PRODUCTPATH="CentOS" else PRODUCTPATH=$8 fi diff -uNr anaconda-10.1.1.19.orig/scripts/mk-rescueimage.i386 anaconda-10.1.1.19/scripts/mk-rescueimage.i386 --- anaconda-10.1.1.19.orig/scripts/mk-rescueimage.i386 2003-10-22 14:35:39.000000000 -0500 +++ anaconda-10.1.1.19/scripts/mk-rescueimage.i386 2005-06-09 12:14:29.000000000 -0500 @@ -34,7 +34,7 @@ if len(sys.argv) > 4: productpath = sys.argv[4] else: - productpath = "RedHat" + productpath = "CentOS" # clean and create destination directory os.system("rm -rf %s" % (destdir,)) diff -uNr anaconda-10.1.1.19.orig/scripts/pkgorder anaconda-10.1.1.19/scripts/pkgorder --- anaconda-10.1.1.19.orig/scripts/pkgorder 2004-10-04 14:02:17.000000000 -0500 +++ anaconda-10.1.1.19/scripts/pkgorder 2005-06-09 12:14:29.000000000 -0500 @@ -165,7 +165,7 @@ if len(args) > 3: productPath = args[3] else: - productPath = "RedHat" + productPath = "CentOS" if not os.path.isdir(distDir): print "error: %s is not a directory" % distDir diff -uNr anaconda-10.1.1.19.orig/scripts/splittree.py anaconda-10.1.1.19/scripts/splittree.py --- anaconda-10.1.1.19.orig/scripts/splittree.py 2004-09-22 14:40:03.000000000 -0500 +++ anaconda-10.1.1.19/scripts/splittree.py 2005-06-09 12:14:29.000000000 -0500 @@ -90,7 +90,7 @@ self.total_discs = None self.bin_discs = None self.src_discs = None - self.product_path = "RedHat" + self.product_path = "CentOS" self.bin_list = [] self.src_list = [] self.shared_list = [] @@ -224,7 +224,7 @@ except OSError, (errno, msg): pass - # now create the RedHat/RPMS dir + # now create the CentOS/RPMS dir os.makedirs("%s-disc%d/%s/RPMS" % (self.dist_dir, i, self.product_path)) else: @@ -385,7 +385,7 @@ def usage(theerror): print theerror - print """Usage: %s --arch=i386 --total-discs=6 --bin-discs=3 --src-discs=3 --release-string="Red Hat Linux" --pkgorderfile=/tmp/pkgorder.12345 --distdir=/usr/src/someunifiedtree --srcdir=/usr/src/someunifiedtree/SRPMS --productpath=RedHat""" % sys.argv[0] + print """Usage: %s --arch=i386 --total-discs=6 --bin-discs=3 --src-discs=3 --release-string="Red Hat Linux" --pkgorderfile=/tmp/pkgorder.12345 --distdir=/usr/src/someunifiedtree --srcdir=/usr/src/someunifiedtree/SRPMS --productpath=CentOS""" % sys.argv[0] sys.exit(1) diff -uNr anaconda-10.1.1.19.orig/text.py anaconda-10.1.1.19/text.py --- anaconda-10.1.1.19.orig/text.py 2004-11-08 09:35:53.000000000 -0600 +++ anaconda-10.1.1.19/text.py 2005-06-09 12:14:29.000000000 -0500 @@ -357,7 +357,7 @@ return WaitWindow(self.screen, title, text) def drawFrame(self): - self.welcomeText = _("%s (C) 2004 Red Hat, Inc.") % (productName,) + self.welcomeText = _("%s Released via the GPL") % (productName,) self.screen.drawRootText (0, 0, self.welcomeText) self.screen.drawRootText (len(_(self.welcomeText)), 0, (self.screen.width - diff -uNr anaconda-10.1.1.19.orig/upgrade.py anaconda-10.1.1.19/upgrade.py --- anaconda-10.1.1.19.orig/upgrade.py 2004-11-24 22:45:40.000000000 -0600 +++ anaconda-10.1.1.19/upgrade.py 2005-06-09 12:14:29.000000000 -0500 @@ -57,7 +57,7 @@ def findExistingRoots(intf, id, chroot, upgradeany = 0): if not flags.setupFilesystems: - relstr = partedUtils.getRedHatReleaseString (chroot) + relstr = partedUtils.getCentOSReleaseString (chroot) if ((cmdline.find("upgradeany") != -1) or (upgradeany == 1) or (partedUtils.productMatches(relstr, productName))): diff -uNr anaconda-10.1.1.19.orig/urlinstall.py anaconda-10.1.1.19/urlinstall.py --- anaconda-10.1.1.19.orig/urlinstall.py 2004-10-15 15:22:19.000000000 -0500 +++ anaconda-10.1.1.19/urlinstall.py 2005-06-09 12:14:29.000000000 -0500 @@ -249,7 +249,7 @@ if self.baseUrl[-1] == "/": self.baseUrl = self.baseUrl[:-1] - # self.baseUrl points at the path which contains the 'RedHat' + # self.baseUrl points at the path which contains the 'CentOS' # directory with the hdlist. if self.baseUrl[-6:] == "/disc1": diff -uNr anaconda-10.1.1.19.orig/utils/genhdlist.c anaconda-10.1.1.19/utils/genhdlist.c --- anaconda-10.1.1.19.orig/utils/genhdlist.c 2004-05-06 16:49:09.000000000 -0500 +++ anaconda-10.1.1.19/utils/genhdlist.c 2005-06-09 12:14:29.000000000 -0500 @@ -432,7 +432,7 @@ char * hdListFile = NULL; char * hdListFile2 = NULL; char * depOrderFile = NULL; - char * prodDir = strdup("RedHat"); + char * prodDir = strdup("CentOS"); poptContext optCon; struct poptOption options[] = { { "hdlist", '\0', POPT_ARG_STRING, &hdListFile, 0 },