summaryrefslogtreecommitdiffstats
path: root/firstaidkit
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2008-03-17 13:56:22 +0100
committerMartin Sivak <msivak@redhat.com>2008-03-17 13:56:22 +0100
commitddcc83d6d7893b7275387c3a5951f0a4c5155f3c (patch)
tree745f6a922a0152f318901de76eb0f5f985dc9203 /firstaidkit
parentf6b4525f4c8ab923c4aabc3192090f59add297d3 (diff)
downloadfirstaidkit-ddcc83d6d7893b7275387c3a5951f0a4c5155f3c.tar.gz
firstaidkit-ddcc83d6d7893b7275387c3a5951f0a4c5155f3c.tar.xz
firstaidkit-ddcc83d6d7893b7275387c3a5951f0a4c5155f3c.zip
Remove -t parameter from --help and from the man page, as it is an undocumented and currently not implemented feature
Diffstat (limited to 'firstaidkit')
-rwxr-xr-xfirstaidkit5
1 files changed, 2 insertions, 3 deletions
diff --git a/firstaidkit b/firstaidkit
index 40d2ef3..e3ea9fd 100755
--- a/firstaidkit
+++ b/firstaidkit
@@ -86,7 +86,6 @@ 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>
- %s [params] -t <plugin> <task>
params is none or more items from:
-c <config file> - location of the config file
-r <root path> - location of the root directory
@@ -101,7 +100,7 @@ def usage(name):
--print-config - print resulting config file
--list - list all plugins
--info <plugin> - get information about plugin
-""" % (name, name, name, name, name, name)
+""" % (name, name, name, name, name)
if __name__=="__main__":
try:
@@ -121,7 +120,7 @@ if __name__=="__main__":
Flags.main_help = True
for key,val in params:
- if key in ("-t", "--task"):
+ if key in ("-t", "--task"): #currently not implemented and not documented!
Config.operation.mode = "task"
Flags.main_help = False
elif key in ("-a", "--auto"):