diff options
| author | Alexander Bokovoy <abokovoy@redhat.com> | 2011-07-01 12:26:35 +0300 |
|---|---|---|
| committer | Alexander Bokovoy <abokovoy@redhat.com> | 2011-07-01 12:26:35 +0300 |
| commit | 8d4360cff1ba0dbe60c5a072ed19eb5e358290ce (patch) | |
| tree | 6b4c5bf19ba6e81f916288b62864015e28c4121e /ipapython | |
| parent | a7cd88f5aa2db2c18fe76c612573ec28eb51fd40 (diff) | |
| parent | d29143ce5f6364dfc93dd0228dc58199f956b0a6 (diff) | |
Merge branch 'ticket-1369' into testing
Diffstat (limited to 'ipapython')
| -rw-r--r-- | ipapython/ipautil.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py index 91d19e95f..1573e0a17 100644 --- a/ipapython/ipautil.py +++ b/ipapython/ipautil.py @@ -1169,3 +1169,21 @@ def bind_port_responder(port, socket_stream=True, socket_timeout=None, responder s.sendto(responder_data, addr) finally: s.close() + +def package_installed_name(packages): + """ + Find out which of mutually exclusive packages is installed + + packages is a list of package names to check + + Returns package name or None + """ + + args = ["/bin/rpm","-q","--queryformat","%{NAME}"] + for package in packages: + try: + (package_name, error, retcode) = run(args+[package]) + return package_name + except CalledProcessError: + continue + return None |
