summaryrefslogtreecommitdiffstats
path: root/exception.py
Commit message (Collapse)AuthorAgeFilesLines
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-171-3/+3
| | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice.
* Common GPLv2+ boilerplate on toplevel python source files.David Cantrell2007-12-171-9/+16
| | | | | | Updated all *.py files to have a uniform GPL boilerplate. Expanded copyright year ranges and listed authors (if they were in the comment section) under the Red Hat Author(s) section.
* Tweak save-exception-to-disk algorithm.Bill Nottingham2007-12-071-10/+16
| | | | | First try mounting as whatever fs is on the disk/partition. If it's blank, or mounting a vfat partition fails, format as vfat.
* Don't create the exception device - just use the device as passed in.Bill Nottingham2007-12-071-9/+3
|
* Remove the release notes code entirely.Chris Lumens2007-12-051-1/+0
|
* fix references to point to the device we created earlierBill Nottingham2007-11-301-2/+2
|
* in test mode, return success when copying anacdump.txtBill Nottingham2007-11-301-1/+1
|
* Rework the exception handling dialog to make it easier to add destinationsChris Lumens2007-10-261-135/+138
| | | | | other than floppy and remote via scp in the future. USB support is almost there.
* Lots of minor pychecker error fixes. Some of these are even real problems.Chris Lumens2007-09-191-2/+1
|
* Not all ssh servers respond with the same password prompt, so be more liberalChris Lumens2007-09-111-1/+1
| | | | in what we wait for (patch from alanm AT redhat DOT com, #286031).
* Display the version number in more places.Chris Lumens2007-08-131-5/+7
|
* 2007-07-02 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-07-021-4/+4
| | | | | | | | | | | | | | | | * autopart.py: Change references of "Reboot" -> "Exit installer" to make more sense in live install case. * exception.py: Likewise. * fsset.py: Likewise. * gui.py: Likewise. * harddrive.py: Likewise. * image.py: Likewise. * packages.py: Likewise. * upgrade.py: Likewise. * urlinstall: Likewise. * yuminstall.py: Likewise. * livecd.py (LiveCDCopyBackend.doRepoSetup): Add mnemonics
* Don't capture passwords from the kickstart file in the exception dump.Chris Lumens2007-06-151-5/+3
|
* 2007-03-07 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-03-071-1/+0
| | | | | | | | | | * backend.py (AnacondaBackend.initLog): Don't open the install log twice (Elliot Peele) * installclass.py (availableClasses): Log a warning when there's an error loading an installclass; raise it in debug mode (Elliot Peele) * exception.py: rpm import not used (Elliot Peele)
* Center scp window. Change label to let the user know port numbers areChris Lumens2007-02-261-2/+16
| | | | accepted. Handle port numbers in the host string (#227909).
* Kickstart is no longer an install class!Chris Lumens2007-01-191-1/+2
|
* Oh crap, support for new pykickstart is here. This is too large to explainChris Lumens2007-01-161-3/+3
| | | | | in a CVS commit message so just read the ChangeLog or look at the diff. Most of it is just code reorganization and it's mostly contained in kickstart.py.
* Print tracebacks with the most recent call first. This is going to takeChris Lumens2006-09-081-1/+10
| | | | some getting used to (#204817).
* * exception.py (dumpException): Make sure trace is not None so weDavid Cantrell2006-09-051-9/+10
| | | | get tracebacks.
* xhwstate -> xserver.hwstate (#200755).Chris Lumens2006-07-311-2/+2
|
* * exception.py (handleException): Don't do stdio bits for test mode.Jeremy Katz2006-07-131-7/+7
|
* Removed iutil.copyFile.Chris Lumens2006-07-121-2/+2
|
* Use subprocess instead of our own code. Fix all calls to execWith* soChris Lumens2006-07-121-2/+1
| | | | | the command is no longer the first argument, since subprocess doesn't work that way. Remove unneeded /proc/e820info cruft. Remove iutil.rmrf.
* Fix traceback in exception handler for cmdline mode.Chris Lumens2006-05-081-0/+5
|
* We don't need system-config-keyboard in the path here anymore. Fix upChris Lumens2006-05-041-48/+48
| | | | exception handling to use anaconda object.
* import shutil would be nice.David Cantrell2006-03-271-0/+1
|
* * exception.py (handleException): iutil.copyFile -> shutil.copyfile.David Cantrell2006-03-271-1/+1
|
* Get ready for a surprise...David Cantrell2006-03-241-1/+2
| | | | not really. It's just iutil.getArch() -> rhpl.getArch() updates.
* 2006-03-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-03-131-16/+0
| | | | | | | | | | | | | | | | | | * packages.py: Remove some obsolete code, convert a little bit of copyExtraModules (... which needs to be hooked back up) * gui.py: No longer import rpm * yuminstall.py: Add specspo bits here instead * exception.py (dumpException): Remove grpset code. * instdata.py (InstallData.reset): Likewise. 2006-03-13 Matt Wilson <msw@rpath.com> * dispatch.py: Remove obsolete code. * floppy.py: Likewise. * language.py: Likewise. * upgrade.py: Likewise.
* String consistency (#181916).Chris Lumens2006-03-101-1/+1
|
* Make the exception dumping code smart enough to ignore all references to thingsChris Lumens2006-02-231-72/+50
| | | | in our skip list.
* 2006-02-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-02-231-0/+2
| | | | * exception.py (dumpClass): More skipping
* Reboot after writing to floppy or remote (#181745).Chris Lumens2006-02-171-6/+8
|
* Trim out package information under another name.Chris Lumens2006-02-031-0/+1
|
* exception.py (handleException): Changed 'be reset' to say 'be rebooted'David Cantrell2006-01-251-1/+1
| | | | (#178566).
* Add yum package selections and excludes to keySkipList. Fix an exception inChris Lumens2006-01-171-5/+13
| | | | exception dumping code.
* Take a filename from the user instead of assuming what we got was just aChris Lumens2006-01-131-1/+2
| | | | directory (#177738).
* Remove a bunch more passwords and language-related stuff from the exceptionChris Lumens2006-01-131-0/+9
| | | | dumps.
* * anaconda: Record the PID of the forked process that handlesDavid Cantrell2005-12-131-0/+24
| | | | | | | | | | | | | | spawning the shell when you are using the VNC mode. * iutil.py (execWithRedirect): If we see /tmp/vncshell.pid, record the PID of whatever we just spawned. * exception.py (handleException): If we see /tmp/vncshell.pid, open it and kill everything listed. Attempt to reclaim std IO. Drop to pdb after we have made sure the shell and spawning loop are dead. Generic comment: Statements like "if not child:" are misleading because that test would be true if it actually was the child. I have changed a few to "if child == 0:" to make it more readable.
* 2005-11-16 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-11-171-1/+2
| | | | | * exception.py (dumpClass): Don't include backend.ayum because it's a ton of (not overly useful) stuff.
* Seriously skip instLanguage stuff.Chris Lumens2005-11-081-0/+2
|
* Don't make scp/floppy errors (typos, etc.) fatal so the user has anotherChris Lumens2005-10-241-6/+7
| | | | chance to copy the exception off.
* Don't dump language dicts.Chris Lumens2005-10-201-6/+3
|
* Add support for copying backtraces to remote hosts to the text interface.Chris Lumens2005-10-191-2/+4
| | | | Also make the cancel buttons go back to the main exception window screen.
* Break exception copying code out into its own functions so the exceptionChris Lumens2005-10-181-117/+140
| | | | | window can run in a loop, therefore making the Cancel buttons more useful than rebooting the machine.
* Added a button to the exception dialog for saving the detailed tracebackChris Lumens2005-09-221-64/+137
| | | | to a remote host via scp.
* Use glade for the exception dialog and display the full traceback on theChris Lumens2005-09-201-1/+1
| | | | bottom.
* 2005-08-30 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-08-301-0/+1
| | | | * exception.py (dumpClass): Stop spamming dumps with the release notes
* Use new logging system.Chris Lumens2005-08-121-4/+6
|
* Deprecate the langsupport kickstart keyword in favor of adding languageChris Lumens2005-06-281-3/+0
| | | | support package groups to the %packages section of the kickstart file.