diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-15 00:20:01 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-15 00:20:01 +0100 |
commit | 84771902499fbddcbe9e5a8205c4111bb34bb698 (patch) | |
tree | 3225629a26c91494569e5378cf5306b6bc9d8349 | |
parent | 79490791dc406f630419b801d61d64b21202fc77 (diff) | |
download | sos-84771902499fbddcbe9e5a8205c4111bb34bb698.tar.gz |
[ipa] fix get_cmd_output_now usage
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/ipa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/ipa.py b/sos/plugins/ipa.py index 10ccd891..39256c11 100644 --- a/sos/plugins/ipa.py +++ b/sos/plugins/ipa.py @@ -78,7 +78,7 @@ class Ipa(Plugin, RedHatPlugin): "klist -ket /etc/httpd/conf/ipa.keytab" ]) - hostname = self.get_cmd_output_now('hostname')['output'] + hostname = self.call_ext_prog('hostname')['output'] self.add_cmd_outputs([ "ipa-replica-manage -v list", "ipa-replica-manage -v list %s" % hostname |