summaryrefslogtreecommitdiffstats
path: root/utils/log_picker
Commit message (Collapse)AuthorAgeFilesLines
* Clean up a bunch of exception handling code.David Lehman2011-02-161-1/+1
| | | | | Mostly replaces 'except Foo, e' with 'except Foo as e', but there are a few areas where some logic gets reworked.
* Add logpicker support into Makefiles, anaconda.spec.in, configure.ac and ↵Tomas Mlcoch2010-10-112-0/+47
| | | | upd-instroot.
* Add logpicker tool into utilsTomas Mlcoch2010-10-1112-0/+1183
The Logpicker is a simple utility for log reporting. It obtains a dump from the Anaconda + some another information and creates a compressed archive. Then it's able to send the archive to: - Bugzilla (in case of Fedora) - Red Hat Ticketing System (in case of RHEL) - email - FTP server - another computer via SCP - local filesystem The dump from the Anaconda is obtained by the signal SIGUSR2. Other information gathered by the Logpicker are: - Filesystem structure image (list of directories and files in ram disk). - Output from commands "dmsetup ls --tree" and "dmsetup info -c". The Logpicker is easy to extend. So you can easily add your own log gathering classes. The main advantage of this utility is that all important logs can be easily sended (reported) by only one command without break an instalation. Example of use: logpicker --bugzilla --login=bzlogin --idbug=999999