diff options
author | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-24 20:27:12 +0000 |
---|---|---|
committer | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-24 20:27:12 +0000 |
commit | d15637160f77d382d5704fec40707e8c403621ee (patch) | |
tree | 37c906947ce953a840d39890342fca2b01fb9db6 /src/sosreport | |
parent | 5346ea230c997976299db984d19d180784921358 (diff) | |
download | sos-d15637160f77d382d5704fec40707e8c403621ee.tar.gz |
Fixed an error in option handling - when fast options were
requested, slow options that were on by default were not disabled.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@130 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/sosreport')
-rwxr-xr-x | src/sosreport | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sosreport b/src/sosreport index d715aac6..076451bd 100755 --- a/src/sosreport +++ b/src/sosreport @@ -359,6 +359,8 @@ def sosreport(): for plug, plugname, optname, optparm in alloptions: if optparm['speed'] == 'fast': plug.setOption(optname, 1) + else + plug.setOption(optname, 0) elif __cmdLineOpts__.usealloptions: for i in range(len(alloptions)): for plug, plugname, optname, optparm in alloptions: |