summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-11-20 15:21:09 +0100
committerJoel Andres Granados <jgranado@redhat.com>2008-11-20 15:22:34 +0100
commit440d29de1bdc222f5f7fba57c3e7953c4be2b214 (patch)
tree68c97454d7e7a81c69f6a6f9ecaeb0227dc21c0f
parent3dba4d574ee89f4fedbda734aa84abc685fefeac (diff)
downloadfirstaidkit-440d29de1bdc222f5f7fba57c3e7953c4be2b214.tar.gz
firstaidkit-440d29de1bdc222f5f7fba57c3e7953c4be2b214.tar.xz
firstaidkit-440d29de1bdc222f5f7fba57c3e7953c4be2b214.zip
Experimental flag:
Since pretty much have tested the passwd, mdadm.conf and grub plugins, it is time to take away the experimental flat Filesystem flag: We still don't have a plugin that checks the sanity of a storage so this flag will be set by default.
-rw-r--r--etc/firstaidkit/firstaidkit.conf2
-rw-r--r--plugins/grub/grub.py2
-rw-r--r--plugins/mdadm_conf.py2
-rw-r--r--plugins/passwd.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/etc/firstaidkit/firstaidkit.conf b/etc/firstaidkit/firstaidkit.conf
index e7b2870..0fd4040 100644
--- a/etc/firstaidkit/firstaidkit.conf
+++ b/etc/firstaidkit/firstaidkit.conf
@@ -34,7 +34,7 @@
#
# flags:
#
-#flags = ""
+flags = "filesystem"
#
# mode:
diff --git a/plugins/grub/grub.py b/plugins/grub/grub.py
index d026dd5..eb9d8ac 100644
--- a/plugins/grub/grub.py
+++ b/plugins/grub/grub.py
@@ -38,7 +38,7 @@ class Grub(Plugin):
@classmethod
def getDeps(cls):
- return set(["root", "experimental", "filesystem"])
+ return set(["root", "filesystem"])
@classmethod
def revert(cls, backup, report):
diff --git a/plugins/mdadm_conf.py b/plugins/mdadm_conf.py
index 9ba19f2..38c5aa1 100644
--- a/plugins/mdadm_conf.py
+++ b/plugins/mdadm_conf.py
@@ -35,7 +35,7 @@ class MdadmConfig(Plugin):
@classmethod
def getDeps(cls):
- return set(["root", "experimental", "filesystem"])
+ return set(["root", "filesystem"])
def __init__(self, *args, **kwargs):
Plugin.__init__(self, *args, **kwargs)
diff --git a/plugins/passwd.py b/plugins/passwd.py
index 9500f04..3b87607 100644
--- a/plugins/passwd.py
+++ b/plugins/passwd.py
@@ -46,7 +46,7 @@ class PasswdPlugin(Plugin):
@classmethod
def getDeps(cls):
- return set(["root", "experimental", "filesystem"])
+ return set(["root", "filesystem"])
def __init__(self, *args, **kwargs):
Plugin.__init__(self, *args, **kwargs)