diff options
| author | Joel Andres Granados <jgranado@redhat.com> | 2008-02-25 13:46:06 +0100 |
|---|---|---|
| committer | Joel Andres Granados <jgranado@redhat.com> | 2008-02-26 14:43:55 +0100 |
| commit | 6cc51ff0f5c4dda26fc196d0e8db35c525b79844 (patch) | |
| tree | 2fedf561f86c64e45b060d36f3e3b55c94b78d7e /plugins | |
| parent | 74b839ef6a27f25f1e034365cc6ea137dd7368eb (diff) | |
Make room in the plugins directory for real plugins.
Move the examples to their own directory.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/plugin_examples/dep1.py (renamed from plugins/dep1.py) | 7 | ||||
| -rw-r--r-- | plugins/plugin_examples/dep2.py (renamed from plugins/dep2.py) | 7 | ||||
| -rw-r--r-- | plugins/plugin_examples/dep3.py (renamed from plugins/dep3.py) | 7 | ||||
| -rw-r--r-- | plugins/plugin_examples/sample1Plugin.py (renamed from plugins/sample1Plugin.py) | 7 | ||||
| -rw-r--r-- | plugins/plugin_examples/sample2Plugin.py (renamed from plugins/sample2Plugin.py) | 9 | ||||
| -rw-r--r-- | plugins/plugin_examples/sample3Plugin/__init__.py (renamed from plugins/sample3Plugin/__init__.py) | 0 | ||||
| -rwxr-xr-x | plugins/plugin_examples/sample3Plugin/plugin (renamed from plugins/sample3Plugin/plugin) | 1 | ||||
| -rw-r--r-- | plugins/plugin_examples/sample3Plugin/sample3Plugin.py (renamed from plugins/sample3Plugin/sample3Plugin.py) | 6 |
8 files changed, 19 insertions, 25 deletions
diff --git a/plugins/dep1.py b/plugins/plugin_examples/dep1.py index bfbe1d4..5c42462 100644 --- a/plugins/dep1.py +++ b/plugins/plugin_examples/dep1.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -51,4 +51,3 @@ class Sample1Plugin(Plugin): def get_plugin(): return Sample1Plugin - diff --git a/plugins/dep2.py b/plugins/plugin_examples/dep2.py index ab60364..79394ac 100644 --- a/plugins/dep2.py +++ b/plugins/plugin_examples/dep2.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -50,4 +50,3 @@ class Sample1Plugin(Plugin): def get_plugin(): return Sample1Plugin - diff --git a/plugins/dep3.py b/plugins/plugin_examples/dep3.py index 1bee803..53c5dd7 100644 --- a/plugins/dep3.py +++ b/plugins/plugin_examples/dep3.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -47,4 +47,3 @@ class Sample1Plugin(Plugin): def get_plugin(): return Sample1Plugin - diff --git a/plugins/sample1Plugin.py b/plugins/plugin_examples/sample1Plugin.py index 9671229..a3aaa7e 100644 --- a/plugins/sample1Plugin.py +++ b/plugins/plugin_examples/sample1Plugin.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -53,4 +53,3 @@ class Sample1Plugin(Plugin): def get_plugin(): return Sample1Plugin - diff --git a/plugins/sample2Plugin.py b/plugins/plugin_examples/sample2Plugin.py index 98baa56..bcaf4de 100644 --- a/plugins/sample2Plugin.py +++ b/plugins/plugin_examples/sample2Plugin.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -39,7 +39,7 @@ class Sample2Plugin(Plugin): name = "Sample2Plugin" version = "0.0.1" author = "Joel Andres Granados" - + def __init__(self, *args, **kwargs): Plugin.__init__(self, *args, **kwargs) @@ -66,4 +66,3 @@ class Sample2Plugin(Plugin): def get_plugin(): return Sample2Plugin - diff --git a/plugins/sample3Plugin/__init__.py b/plugins/plugin_examples/sample3Plugin/__init__.py index 725a577..725a577 100644 --- a/plugins/sample3Plugin/__init__.py +++ b/plugins/plugin_examples/sample3Plugin/__init__.py diff --git a/plugins/sample3Plugin/plugin b/plugins/plugin_examples/sample3Plugin/plugin index c3099a5..ba3a5e3 100755 --- a/plugins/sample3Plugin/plugin +++ b/plugins/plugin_examples/sample3Plugin/plugin @@ -39,4 +39,3 @@ fi if [ $TASK = "restore" ]; then echo restore true fi - diff --git a/plugins/sample3Plugin/sample3Plugin.py b/plugins/plugin_examples/sample3Plugin/sample3Plugin.py index 8186b7c..6ec95ec 100644 --- a/plugins/sample3Plugin/sample3Plugin.py +++ b/plugins/plugin_examples/sample3Plugin/sample3Plugin.py @@ -1,16 +1,16 @@ # First Aid Kit - diagnostic and repair tool for Linux # Copyright (C) 2007 Martin Sivak <msivak@redhat.com> -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
