summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typo.Joel Andres Granados2008-07-141-1/+1
|
* Avoid the ugly space left by adding "\" to a string separation.Joel Andres Granados2008-07-146-45/+45
| | | | | | | | | | | | | | | When deviding a string into two lines one must use pythons automatic string concatenation (python concatenates strings that are in different line but are inside parenthesis). Do not use the "\" in the string as this will cause strange and unwanted output. Yes: print("long string" "rest of string") No: print("long string \ rest of string")
* Put the header and footer for the print information function in the FAKInfo ↵Joel Andres Granados2008-07-142-3/+7
| | | | | | | class. The only condition to lookout for is that the fd must have a write function implemented. By default the stdout is used.
* Fix the format of the firstaidkit file.Joel Andres Granados2008-07-1424-447/+748
| | | | | | | | | | | | | - Indendtation should be 4 spaces. There was a function indented with 8 spaces. - Lines should be shorted than 80 chars. It just looks pretty :) Think of terminals whith only 80 char of length. Think of debuging in rescue mode. - Change also the print statements. Just getting ready for python 3000. - Get some spaces between elifs - There should not be any lines ending in spaces. - This can all be read in the python code conventions http://www.python.org/dev/peps/pep-0008/
* Handle the situation where /var/log/ directory is not present.Joel Andres Granados2008-07-112-10/+13
|
* Discovery plugin: better descriptionMartin Sivak2008-06-301-2/+2
|
* Discovery plugin introductionMartin Sivak2008-06-301-0/+110
|
* Add the Info object and make it possible to override lock for single sectionMartin Sivak2008-06-303-4/+28
|
* Fix typo.Joel Andres Granados2008-06-061-1/+1
|
* report to the issue after the diagnose. (mdadm config plugin)Joel Andres Granados2008-06-061-0/+1
|
* Fix TypoJoel Andres Granados2008-06-061-1/+1
|
* Add an exists function to the backup system.Joel Andres Granados2008-06-061-2/+26
|
* Make correct use of the backup system in the mdadm plugin.Joel Andres Granados2008-06-061-15/+7
|
* We don't need the backupName anymore. (xserver plugin)Joel Andres Granados2008-06-061-1/+0
|
* Use the backup system spaces instead of the backup system backend. (xserver ↵Joel Andres Granados2008-06-061-18/+8
| | | | plugin)
* New mdadm configuration plugin.Joel Andres Granados2008-06-062-0/+175
|
* We don't really need to worry about the backup stuff now. (xserver plugin)Joel Andres Granados2008-06-061-4/+1
|
* Always use os.path.join when using the chroon.Joel Andres Granados2008-06-064-7/+9
| | | | This will avoid the double backslash.
* Use the reporting object correctly.Joel Andres Granados2008-06-061-1/+2
| | | | Must have a origin and level.
* Add a graph that expresses the default flow.Joel Andres Granados2008-06-041-32/+115
|
* Create a general purpose exception for thing that dont have exception yet.Joel Andres Granados2008-06-041-0/+11
|
* Have xserver plugin use the backup system.Joel Andres Granados2008-06-041-14/+21
|
* Clean the created log file for the initialization testsuiteJoel Andres Granados2008-06-041-1/+5
|
* Add a graph that easily explains the default flow for firstaidkit.Joel Andres Granados2008-06-041-0/+471
|
* Better express the plugin-all package.Joel Andres Granados2008-06-031-1/+1
|
* fix typo in xserver plugin.Joel Andres Granados2008-06-031-1/+1
|
* fix typoJoel Andres Granados2008-06-031-1/+1
|
* initialize the flow variable in xserver plugin in the correct way.Joel Andres Granados2008-06-031-1/+1
|
* fix typosJoel Andres Granados2008-06-031-4/+4
|
* Make the xserver plugin use the flags.Joel Andres Granados2008-06-031-0/+5
|
* Add pygtk2-libglade qas dependency for guiMartin Sivak2008-06-031-1/+1
|
* Rename gui frontend to gtk frontend and add some examples to firstaidkit ↵Martin Sivak2008-06-031-8/+10
| | | | launch script
* Make the pycFile.pyc on the fly before starting any tests in the ↵Joel Andres Granados2008-06-032-4/+5
| | | | initialization suite.
* Its better to compile the file on the fly and then do the test.Joel Andres Granados2008-06-031-0/+0
| | | | | This will avoid the situation where old pyc or pyo files don't work with some python interpreter version.
* Change to reflect ↵Joel Andres Granados2008-06-031-9/+7
| | | | | | http://fedoraproject.org/wiki/Packaging/Python#Byte_Compiled_Files Lets include all the pyc and pyo files so they get erased at uninstall time.
* Give a more meaningful message format when errors and failures occur in the ↵Joel Andres Granados2008-06-031-2/+6
| | | | testsuite.
* Execute the testsuite as soon as the code base is unzipped.Joel Andres Granados2008-06-031-0/+3
|
* Add the pyc file to the source.Joel Andres Granados2008-06-031-0/+0
| | | | This is necesary to run the testsuite
* Add the testsuite controler (test) and some tests.Joel Andres Granados2008-06-029-0/+414
|
* Get the default configuration names right.Joel Andres Granados2008-06-021-1/+1
|
* Catch the exception at the firstaidkit script level.Joel Andres Granados2008-05-301-2/+11
| | | | Give some additional information to the user so he knows what to do.
* Check to see if the backup dir is present when creating it.Joel Andres Granados2008-05-301-1/+4
| | | | | If firstaidkit is run and does not end properly it is possible for the backup dir to already be there. The sane thing to do is to tell the user.
* Lets not have a milion log files in the current directory.Joel Andres Granados2008-05-301-1/+1
|
* Two reasons to change the backup directory from /tmp/backup to ↵Joel Andres Granados2008-05-301-1/+1
| | | | | | | /tmp/firstaidkitbackup 1. The /tmp/backup might already exist and have some info 2. the directory /tmp/firstaidkitbackup is a bit more specific than the what was used.
* When looking in paths given by the user, check to see if the paths is valid.Joel Andres Granados2008-05-301-0/+3
| | | | We don't want to fail as other paths might be usefull.
* Fix traceback if user not root and has not log file defined.Joel Andres Granados2008-05-301-1/+11
| | | | | | | | If firstaidkit is run with default config (from configuration.py) the log file is /var/log/firstaidkit.log. This could generate a traceback if the user is not root. This patch simply make fak fall back on a file located on the curren directory. If this further fails print error and exit with error code.
* The FLAGS file is a manpage now.Joel Andres Granados2008-05-301-1/+0
|
* Change the spec file to reflect the name changes in the manpages.Joel Andres Granados2008-05-301-2/+2
|
* fix the regular expression that identifies the man page comment.Joel Andres Granados2008-05-301-1/+1
| | | | for some reason this regexp seems to behave better.
* Change the "__" string to "!__" string so it shows up correctly in the wiki ↵Joel Andres Granados2008-05-301-0/+1
| | | | page.