diff options
-rw-r--r-- | sos/plugins/as7.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/as7.py b/sos/plugins/as7.py index e56d91dd..a41e83ee 100644 --- a/sos/plugins/as7.py +++ b/sos/plugins/as7.py @@ -26,7 +26,6 @@ class AS7(Plugin, IndependentPlugin, AS7Mixin): ("port", 'port of the management api for jboss', '', '9990'), ("user", 'username for management console', '', None), ("pass", 'password for management console', '', None), - ("appxml", "comma separated list of application's whose XML descriptors you want. The keyword 'all' will collect all descriptors in the designated profile(s).", '', False), ] __MD5_CHUNK_SIZE=128 @@ -203,6 +202,8 @@ class AS7(Plugin, IndependentPlugin, AS7Mixin): # this is probably not a zipfile so we don't care pass + def checkenabled(self): + return self.__getJbossHome() def setup(self): |