summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
Commit message (Collapse)AuthorAgeFilesLines
* Avoid putting virtualization option when in Xen or VMware. (#443373)Joel Andres Granados2008-04-231-7/+5
|
* If the stage2 image is on a CD, don't bother copying it (#441336).Chris Lumens2008-04-231-1/+5
|
* Switch to using 'yum clean all' to clean up after preupgrade (#374921)Jeremy Katz2008-04-221-2/+4
|
* Avoid dividing by zero (#439160)Jeremy Katz2008-04-221-1/+2
|
* Listing the directories before expiring yum caches helpsJeremy Katz2008-04-181-1/+1
|
* Use /var/cache/yum as the cachedir since /tmp might be too small (#443083).Chris Lumens2008-04-181-6/+10
|
* Nuke preupgrade cache once we're done (#442832)Jeremy Katz2008-04-171-0/+7
|
* Support bringing up the network if needed with preupgrade (#442610)Jeremy Katz2008-04-171-0/+12
| | | | | | If we need to download something and the network is down with preupgrade, then ask about bringing the network up. Note: only supported for graphical mode.
* Fix up silly syntax error that crept in to this commitJeremy Katz2008-04-151-1/+1
|
* Expire yum caches on upgrade (#374921)Jeremy Katz2008-04-151-0/+9
| | | | | Ensure that we expire yum caches after an upgrade so that people don't end up still pulling from the old repos
* Don't cause the text to flicker between installed packages.Chris Lumens2008-04-081-1/+0
|
* Fix raising new NoSuchGroup exception.Chris Lumens2008-04-071-2/+2
|
* Don't copy the stage2 image every time or on the way back.Chris Lumens2008-04-071-0/+6
|
* Clean up "finishing upgrade" wait windowJeremy Katz2008-04-041-7/+5
| | | | | Make sure we're not constantly creating a new window and also that we then destroy the window after the run
* Brute force hack to avoid the number of packages overflowing (#436588)Jeremy Katz2008-04-041-2/+3
|
* Use a better test to see if a package group doesn't exist (#439922).Chris Lumens2008-04-021-15/+10
|
* Fix my tyopJeremy Katz2008-03-301-1/+1
|
* Fix for test mode repo bitsJeremy Katz2008-03-271-2/+8
| | | | | | Don't try to copy stage2 if we're not setting up filesystems (eg, test mode or rootpath mode) and also have some fixes to allow for nfs: with a local path
* os.path.join does not work the way we think it should.Chris Lumens2008-03-271-1/+1
| | | | | | | "If any component is an absolute path, all previous components are thrown away, and joining continues." -- http://docs.python.org/lib/module-os.path.html
* Remove the stage2 in all cases now that we're copying it basically all the timeJeremy Katz2008-03-271-1/+1
|
* Handle kernel variants a little better at install time tooJeremy Katz2008-03-261-20/+4
| | | | | | Make our handling of kernel variants a little bit more flexible, allowing for the fact that uname -r might not match version-release exactly. This also makes it so we don't have a hard-coded list of kernel variants
* Use anaconda-upgrade dir in the preupgrade caseJeremy Katz2008-03-251-16/+38
| | | | | | | | For the first "stock" repo, set the cache to /var/cache/yum/anaconda-upgrade if preupgrade is passed. Also has some pain to deal with *) YumRepository.dirSetup() currently overrides the per-repo cachedir setting, so just do the same basic bits in our own copy. *) Override _getFile() so that we just use the local file if it exists
* Fix up more unicode shenanigans (#437993)Jeremy Katz2008-03-241-1/+4
| | | | | Ensure we encode/decode to utf8 at appropriate points to avoid tracebacks in text mode
* Move /tmp/stage2.img to /mnt/sysimage to free up some memory (#438377).Chris Lumens2008-03-241-32/+45
|
* Make sure the first disc image is mounted before setting up repos.Chris Lumens2008-03-191-17/+18
|
* Use arch instead of the name again in package nevra.Chris Lumens2008-03-181-1/+1
|
* Set methodstr for nfsiso installs (#437541).Chris Lumens2008-03-141-0/+4
|
* Don't show the epoch in the progress bar (#437502).Chris Lumens2008-03-141-4/+4
|
* "gtk-edit" isn't valid in text mode.Chris Lumens2008-03-131-1/+1
|
* yum.remove removes installed packages, not to be installed packages (#436226)Jeremy Katz2008-03-121-5/+23
| | | | So go back to removing from the tsInfo ourselves and add support for globs
* Add a progress bar for when we're downloading headers (#186789).Chris Lumens2008-03-121-7/+43
|
* Use /mnt/sysimage/tmp/cache for the yum cache, instead of the ramdisk.Chris Lumens2008-03-111-7/+10
|
* Write out keyboard settings before installing packages. (related to #429358)David Lehman2008-03-051-0/+2
|
* Merge in branch to implement stage2= parameter.Chris Lumens2008-03-041-4/+24
|\
| * Support stage2= for CD installs in loader.Chris Lumens2008-03-041-2/+7
| |
| * Support stage2= for HD installs.Chris Lumens2008-03-041-4/+12
| |
| * Update the method string handling for NFS and URL installs.Chris Lumens2008-03-041-1/+8
| | | | | | | | | | | | | | | | yum doesn't understand nfs: and nfsiso: URLs, so we've been mangling them early in the anaconda file. Now with stage2=, we need to do this later because in the NFS case, we won't have the source repo mounted. Delay the mangling until we're doing repo setup, which is also where the NFS source will get mounted.
* | Add comment regarding usage of eliloPeter Jones2008-03-041-0/+1
|/
* Allow recovery from some missing repodata conditions.Chris Lumens2008-02-281-16/+18
| | | | | | If we try to read the repodata during doRepoSetup and find that it's not there, allow editing the repository right away and attempt to reconfigure. These changes will be reflected in task selection later on.
* Ensure that group info for txmbrs is accurate after we resetJeremy Katz2008-02-271-0/+6
| | | | | | | When adding new repos, we reset the comps data so that it can take into account the new groups (or new packages in groups). This, though, ends up leaving txmbrs with duplicate items in their group list. Let's uniquify the list to avoid problems when later deselecting a group
* There's no need to wait if the last download retry failed.Chris Lumens2008-02-211-0/+3
|
* Add some error handling around populateTs, instead of throwing a traceback.Chris Lumens2008-02-161-1/+16
|
* Fix typo.David Lehman2008-02-051-1/+1
|
* Copy over repodata from media after the install is done (#381721)Jeremy Katz2008-02-051-0/+11
|
* Allow removing packages by glob now that yum supports it.Chris Lumens2008-01-251-13/+7
|
* Repos anaconda knows about but are disabled should be addons.Chris Lumens2008-01-221-1/+1
| | | | | This means that all repos listed in the installclasses but aren't the base repos will be written to the anaconda-ks.cfg file.
* Add the default repo to the UI so it can be edited later.Chris Lumens2008-01-221-2/+3
|
* Don't set currentMedia when we're on a network install (#428927).Chris Lumens2008-01-161-4/+8
|
* Don't offer two reboot options. That's not helpful.Chris Lumens2008-01-161-1/+1
|
* Fix the progress bar to hit 100% on the last package (#428790).Chris Lumens2008-01-151-2/+3
|