parent
246b589c22
commit
96263dbd2d
1 changed files with 0 additions and 11 deletions
|
@ -76,19 +76,11 @@ import json
|
|||
import shlex
|
||||
import os
|
||||
import sys
|
||||
try:
|
||||
import rpm
|
||||
USE_PYTHON = True
|
||||
except ImportError:
|
||||
USE_PYTHON = False
|
||||
|
||||
URPMI_PATH = '/usr/sbin/urpmi'
|
||||
URPME_PATH = '/usr/sbin/urpme'
|
||||
|
||||
def query_package(module, name):
|
||||
if USE_PYTHON:
|
||||
return rpm.TransactionSet().dbMatch(rpm.RPMTAG_NAME, name).count() != 0
|
||||
|
||||
# rpm -q returns 0 if the package is installed,
|
||||
# 1 if it is not installed
|
||||
cmd = "rpm -q %s" % (name)
|
||||
|
@ -99,9 +91,6 @@ def query_package(module, name):
|
|||
return False
|
||||
|
||||
def query_package_provides(module, name):
|
||||
if USE_PYTHON:
|
||||
return rpm.TransactionSet().dbMatch(rpm.RPMTAG_PROVIDES, name).count() != 0
|
||||
|
||||
# rpm -q returns 0 if the package is installed,
|
||||
# 1 if it is not installed
|
||||
cmd = "rpm -q --provides %s" % (name)
|
||||
|
|
Loading…
Reference in a new issue