diff options
author | Jesse Jaggars <jjaggars@redhat.com> | 2012-02-27 10:14:26 -0600 |
---|---|---|
committer | Jesse Jaggars <jjaggars@redhat.com> | 2012-02-27 10:14:26 -0600 |
commit | af1567395d1cfc2ef84b68478309ca47515d622d (patch) | |
tree | 693fddc4eccde01fa9d79f7a55a118d03830508f | |
parent | a644f995f5ed5c900293b440431443963fef8855 (diff) | |
download | sos-af1567395d1cfc2ef84b68478309ca47515d622d.tar.gz |
adding checkenabled to the as7 plugin
-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): |