summaryrefslogtreecommitdiffstats
path: root/firstaidkit
diff options
context:
space:
mode:
Diffstat (limited to 'firstaidkit')
-rwxr-xr-xfirstaidkit4
1 files changed, 4 insertions, 0 deletions
diff --git a/firstaidkit b/firstaidkit
index 616d1c3..5a01892 100755
--- a/firstaidkit
+++ b/firstaidkit
@@ -121,6 +121,8 @@ def usage(name):
%s [params] -a <flow> - runs the automated mode with specified flow
%s [params] -a fix - automated fixing sequence [using the fix flows]
%s [params] -f <plugin> <flow>
+ - This implies --nodeps
+
params is none or more items from:
-c <config file> - location of the config file
-r <root path> - location of the root directory
@@ -172,6 +174,8 @@ if __name__=="__main__":
elif key in ("-f", "--flow"):
Config.operation.mode = "flow"
Flags.main_help = False
+ # Implies nodeps so the individual plugins can run.
+ Config.operation.dependencies = "False"
elif key in ("-c", "--config"):
Config.read(val)