summaryrefslogtreecommitdiffstats
path: root/pyanaconda/errors.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove filesystem migration code.David Lehman2013-01-281-7/+0
| | | | | The only time anyone really used it was to migrate from ext2->ext3. It is dead weight.
* Handle package dependency errors on kickstart installs too (#865073).Chris Lumens2012-11-141-1/+10
| | | | | This is not handled by similar code in the software spoke, because that code is never run for kickstart installs containing a %packages section.
* payloadInstallHandler should only optionally take a package argument (#868542).Chris Lumens2012-10-231-4/+10
|
* Add an error handler for fatal package installation errors (#865291).Chris Lumens2012-10-161-1/+10
| | | | We had everything except the function to display the error. Oops.
* The partitionErrorHandler text needs a 's' in the format string (#861376).Chris Lumens2012-10-011-1/+1
|
* Fix a problem with storage error handling (#861376).Chris Lumens2012-10-011-1/+1
|
* Index the exn mapping by string, not by object.Chris Lumens2012-09-241-21/+17
| | | | | | | When testing for membership of the NoSuchPackage/NoSuchGroup exceptions, they appear to be first converted with str(), resulting in the name of the group or package in question. There are bound to be more instances of this in the future. Thus, let's just go by the names of things.
* Remove reference to PartitioningWarning, which was removed last week (#875931).Chris Lumens2012-09-171-9/+0
|
* And then fix an assortment of non-packaging pylint errors, too.Chris Lumens2012-08-301-1/+1
|
* reraise error if there is no uiBrian C. Lane2012-07-191-1/+1
|
* Move kickstart error handling into errors.py, where all the rest is.Chris Lumens2012-05-081-1/+9
| | | | | This is another step in my effort to get rid of the self.anaconda parameter everything in kickstart.py seems to take.
* Run kickstart %post scripts at the end of installation.Chris Lumens2012-05-081-2/+16
| | | | | Certain portions of the install are now implemented as kickstart scripts, so they need to start being run.
* Fix the obvious typos in errors.py.Chris Lumens2012-05-041-3/+3
|
* Correct a couple minor problems with error handling.Chris Lumens2012-04-231-2/+2
|
* Add error handling functions for the various autopart errors.Chris Lumens2012-04-091-1/+34
|
* Add error handlers for NoSuchGroup and NoSuchPackage.Chris Lumens2012-03-141-3/+28
| | | | | Also, move the imports down into the error handler in order to avoid circular imports.
* Add new packaging module.David Lehman2012-02-281-1/+62
|
* Add a new errors.py file.Chris Lumens2012-02-161-0/+130
| | | | | | This one contains our new top-level error handling callback and all the possible error messages we need to display. Note the distinct lack of exception classes in this file. Please keep it that way.
* Remove obsolete error handling left over from the old storage code.David Lehman2012-02-161-162/+0
|
* Throw away the dispatcher 'skipList' and give Step a state.Ales Kozumplik2011-05-191-0/+3
| | | | | | In particular, 'scheduled' will run if not explicitly skipped, 'skipped' means 'is never going to be run' and 'requested' means 'will run and can not be skipped'.
* Structure the repo layout so it matches final structure better and make isys ↵Martin Sivak2010-05-311-0/+159
a real Python package. Also updates the build and autotools stuff to work with the new structure