Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix typo. | Joel Andres Granados | 2008-07-14 | 1 | -1/+1 | |
| | ||||||
* | Avoid the ugly space left by adding "\" to a string separation. | Joel Andres Granados | 2008-07-14 | 6 | -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 Granados | 2008-07-14 | 2 | -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 Granados | 2008-07-14 | 24 | -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 Granados | 2008-07-11 | 2 | -10/+13 | |
| | ||||||
* | Discovery plugin: better description | Martin Sivak | 2008-06-30 | 1 | -2/+2 | |
| | ||||||
* | Discovery plugin introduction | Martin Sivak | 2008-06-30 | 1 | -0/+110 | |
| | ||||||
* | Add the Info object and make it possible to override lock for single section | Martin Sivak | 2008-06-30 | 3 | -4/+28 | |
| | ||||||
* | Fix typo. | Joel Andres Granados | 2008-06-06 | 1 | -1/+1 | |
| | ||||||
* | report to the issue after the diagnose. (mdadm config plugin) | Joel Andres Granados | 2008-06-06 | 1 | -0/+1 | |
| | ||||||
* | Fix Typo | Joel Andres Granados | 2008-06-06 | 1 | -1/+1 | |
| | ||||||
* | Add an exists function to the backup system. | Joel Andres Granados | 2008-06-06 | 1 | -2/+26 | |
| | ||||||
* | Make correct use of the backup system in the mdadm plugin. | Joel Andres Granados | 2008-06-06 | 1 | -15/+7 | |
| | ||||||
* | We don't need the backupName anymore. (xserver plugin) | Joel Andres Granados | 2008-06-06 | 1 | -1/+0 | |
| | ||||||
* | Use the backup system spaces instead of the backup system backend. (xserver ↵ | Joel Andres Granados | 2008-06-06 | 1 | -18/+8 | |
| | | | | plugin) | |||||
* | New mdadm configuration plugin. | Joel Andres Granados | 2008-06-06 | 2 | -0/+175 | |
| | ||||||
* | We don't really need to worry about the backup stuff now. (xserver plugin) | Joel Andres Granados | 2008-06-06 | 1 | -4/+1 | |
| | ||||||
* | Always use os.path.join when using the chroon. | Joel Andres Granados | 2008-06-06 | 4 | -7/+9 | |
| | | | | This will avoid the double backslash. | |||||
* | Use the reporting object correctly. | Joel Andres Granados | 2008-06-06 | 1 | -1/+2 | |
| | | | | Must have a origin and level. | |||||
* | Add a graph that expresses the default flow. | Joel Andres Granados | 2008-06-04 | 1 | -32/+115 | |
| | ||||||
* | Create a general purpose exception for thing that dont have exception yet. | Joel Andres Granados | 2008-06-04 | 1 | -0/+11 | |
| | ||||||
* | Have xserver plugin use the backup system. | Joel Andres Granados | 2008-06-04 | 1 | -14/+21 | |
| | ||||||
* | Clean the created log file for the initialization testsuite | Joel Andres Granados | 2008-06-04 | 1 | -1/+5 | |
| | ||||||
* | Add a graph that easily explains the default flow for firstaidkit. | Joel Andres Granados | 2008-06-04 | 1 | -0/+471 | |
| | ||||||
* | Better express the plugin-all package. | Joel Andres Granados | 2008-06-03 | 1 | -1/+1 | |
| | ||||||
* | fix typo in xserver plugin. | Joel Andres Granados | 2008-06-03 | 1 | -1/+1 | |
| | ||||||
* | fix typo | Joel Andres Granados | 2008-06-03 | 1 | -1/+1 | |
| | ||||||
* | initialize the flow variable in xserver plugin in the correct way. | Joel Andres Granados | 2008-06-03 | 1 | -1/+1 | |
| | ||||||
* | fix typos | Joel Andres Granados | 2008-06-03 | 1 | -4/+4 | |
| | ||||||
* | Make the xserver plugin use the flags. | Joel Andres Granados | 2008-06-03 | 1 | -0/+5 | |
| | ||||||
* | Add pygtk2-libglade qas dependency for gui | Martin Sivak | 2008-06-03 | 1 | -1/+1 | |
| | ||||||
* | Rename gui frontend to gtk frontend and add some examples to firstaidkit ↵ | Martin Sivak | 2008-06-03 | 1 | -8/+10 | |
| | | | | launch script | |||||
* | Make the pycFile.pyc on the fly before starting any tests in the ↵ | Joel Andres Granados | 2008-06-03 | 2 | -4/+5 | |
| | | | | initialization suite. | |||||
* | Its better to compile the file on the fly and then do the test. | Joel Andres Granados | 2008-06-03 | 1 | -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 Granados | 2008-06-03 | 1 | -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 Granados | 2008-06-03 | 1 | -2/+6 | |
| | | | | testsuite. | |||||
* | Execute the testsuite as soon as the code base is unzipped. | Joel Andres Granados | 2008-06-03 | 1 | -0/+3 | |
| | ||||||
* | Add the pyc file to the source. | Joel Andres Granados | 2008-06-03 | 1 | -0/+0 | |
| | | | | This is necesary to run the testsuite | |||||
* | Add the testsuite controler (test) and some tests. | Joel Andres Granados | 2008-06-02 | 9 | -0/+414 | |
| | ||||||
* | Get the default configuration names right. | Joel Andres Granados | 2008-06-02 | 1 | -1/+1 | |
| | ||||||
* | Catch the exception at the firstaidkit script level. | Joel Andres Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -1/+1 | |
| | ||||||
* | Two reasons to change the backup directory from /tmp/backup to ↵ | Joel Andres Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -1/+0 | |
| | ||||||
* | Change the spec file to reflect the name changes in the manpages. | Joel Andres Granados | 2008-05-30 | 1 | -2/+2 | |
| | ||||||
* | fix the regular expression that identifies the man page comment. | Joel Andres Granados | 2008-05-30 | 1 | -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 Granados | 2008-05-30 | 1 | -0/+1 | |
| | | | | page. |