summaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
...
* Change the order, to increase readability.Joel Andres Granados2008-10-171-4/+4
|
* Name collision in self.backup nameMartin Sivak2008-09-081-4/+4
|
* Name colision between self.backup and self.backup()Martin Sivak2008-09-081-2/+2
|
* New mkinitrd pluginAdam Pribyl2008-09-081-0/+116
|
* The Grub plugin must use a persistent Backup space.Joel Andres Granados2008-08-081-1/+1
|
* Print the persistent backup space path at the endMartin Sivak2008-08-081-0/+2
|
* Initial commit for the Grub plugin.Joel Andres Granados2008-08-075-0/+778
| | | | | Nothing was used from the original grub plugin. For now they will both coexists in the code.
* Continue with the name standarization and simplification.Joel Andres Granados2008-07-1514-0/+0
| | | | | | | | | | - The "_p" is not needed. Avoiding the suffix makes the names simpler. - When the plugin needs to be separated into varios subplugins, use the _ to signify that a subplugin is related to a father plugin. Like rpm_lowlevel, this say that lowlevel is part of the rpm plugin. - When naming a plugin keep the name SHORT and simple. - Be sure to name all the plugin packages as "plugin-name"
* Standarize and simplify plugin names.Joel Andres Granados2008-07-1514-0/+0
| | | | | | | | | | | - The file names are the ones the the user will be using to reference each plugin. Having a long name will not help the user. - Also, to signify that they are plugins we will use the "p_" at the beginning of each name. - plugin_examples is left like that because it is not a plugin in itself, but a directory that contains plugins. Please follow these naming standards when you name you plugins.
* General fixes to plugin_mdadmcong.pyJoel Andres Granados2008-07-141-12/+23
|
* Clean up passwd.py file.Joel Andres Granados2008-07-141-6/+12
|
* Fix typo.Joel Andres Granados2008-07-141-3/+3
|
* Clean plugin_mdadmconf.py fileJoel Andres Granados2008-07-141-29/+57
|
* Make xserver plugin a little friendlier.Joel Andres Granados2008-07-141-4/+14
| | | | | | | - Put the previous xorg config file in a backup file where the user can see it. - Give the user extra information about how to create an xorg configuration file.
* Fix typo.Joel Andres Granados2008-07-141-1/+1
|
* The Backup system does not like real objects.Joel Andres Granados2008-07-141-1/+1
| | | | | We should really implement a backup object that know who is calling and sets the unique id.
* Avoid the ugly space left by adding "\" to a string separation.Joel Andres Granados2008-07-141-10/+10
| | | | | | | | | | | | | | | 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")
* Fix the format of the firstaidkit file.Joel Andres Granados2008-07-145-53/+82
| | | | | | | | | | | | | - 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/
* Discovery plugin: better descriptionMartin Sivak2008-06-301-2/+2
|
* Discovery plugin introductionMartin Sivak2008-06-301-0/+110
|
* 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
|
* 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-061-0/+160
|
* 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-063-6/+8
| | | | This will avoid the double backslash.
* Use the reporting object correctly.Joel Andres Granados2008-06-061-1/+2
| | | | Must have a origin and level.
* Have xserver plugin use the backup system.Joel Andres Granados2008-06-041-14/+21
|
* 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
|
* Change the detected name to checked.Joel Andres Granados2008-05-1211-21/+21
| | | | | The new variable name better expresses the objective of the issue state. This will help avoid confusion for the plugin developer.
* Fix the behavior of xserver plugin to reflect new Xorg server behavior.Joel Andres Granados2008-05-071-13/+50
|
* Use Issue reporting in pluginsMartin Sivak2008-05-058-1/+62
|
* Add the install flow to grub pluginMartin Sivak2008-04-211-22/+55
|
* We do not need to initialize x86BootloaderInfo before we actually create ↵Martin Sivak2008-04-101-1/+1
| | | | instance of this plugin
* Use config bits mechanism to look for anaconda and booty and then translate ↵Martin Sivak2008-04-091-3/+10
| | | | system device names to grub notation in Grub plugin
* GRUB plugin: Get linux partitions tooMartin Sivak2008-04-081-0/+10
|
* GRUB plugin now looks for bootable partitions and probably has the diagnose ↵Martin Sivak2008-04-081-8/+32
| | | | part working
* First try for the bootloader pluginMartin Sivak2008-04-081-0/+97
|
* Make the lowlevel rpm plugin work betterMartin Sivak2008-04-083-6/+34
|
* Staled locks handling in rpm lowlevel pluginMartin Sivak2008-03-192-1/+79
|
* Update patch in the rpm plugins, add fixing sequencesMartin Sivak2008-03-192-3/+6
|
* The temp file was a bad ideaJoel Andres Granados2008-03-181-3/+1
|
* Squashed commit of the following:Joel Andres Granados2008-03-181-15/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | commit 810d6bd770533a8504a64983a4d7e2db406595df Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:45:50 2008 +0100 fix some dependancy issues commit f4bc1ffdb49fadc9fb3de735e06729a40e7641ac Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:42:20 2008 +0100 Include the utils package commit afaaf4dadbe0fb8137576059c3da1cdf62a318e8 Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:27:33 2008 +0100 Fix license in setup.py commit 25442d8c09941126fde5b5d71d5287d0814d712f Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:00:46 2008 +0100 Create the rpm subpackage for the xserver plugin
* Split the RPM plugin into the consistency and lowlevel parts and use ↵Martin Sivak2008-03-183-1/+119
| | | | dependency flags