Merge pull request #90 from skvidal/feature

yum module
pull/25/merge
Michael DeHaan 12 years ago
commit 32484f2156

@ -63,6 +63,8 @@ def pkg_to_dict(po):
return d return d
def list_stuff(my, stuff): def list_stuff(my, stuff):
# FIXME - there are poitential tracebacks that could occur here
# need some more catching for them so we can see what happened
if stuff == 'installed': if stuff == 'installed':
return [ pkg_to_dict(po) for po in my.rpmdb ] return [ pkg_to_dict(po) for po in my.rpmdb ]
elif stuff == 'updates': elif stuff == 'updates':
@ -113,6 +115,7 @@ def run_yum(command):
def ensure(my, state, pkgspec): def ensure(my, state, pkgspec):
yumconf = my.conf.config_file_path yumconf = my.conf.config_file_path
res = {}
if state == 'installed': if state == 'installed':
pkg = None pkg = None
# check if pkgspec is installed # check if pkgspec is installed
@ -126,13 +129,16 @@ def ensure(my, state, pkgspec):
pkgs = e +m pkgs = e +m
if pkgs: if pkgs:
return { 'changed':False, 'failed':False, 'results':'', 'errors':'' } return { 'changed':False }
# if not - try to install it # if not - try to install it
my.close() my.close()
del my del my
cmd = 'yum -c %s -d1 -y install %s' % (yumconf, pkgspec) cmd = 'yum -c %s -d1 -y install %s' % (yumconf, pkgspec)
rc, out, err = run_yum(cmd) rc, out, err = run_yum(cmd)
# FIXME - if we did an install - go and check the rpmdb to see if it actually installed
# look for the pkg in rpmdb
# look for the pkg via obsoletes
if rc: if rc:
changed = False changed = False
failed = True failed = True
@ -140,11 +146,15 @@ def ensure(my, state, pkgspec):
changed = True changed = True
failed = False failed = False
return {'changed': changed, res['changed'] = changed
'failed': failed,
'results':out,
'errors': err }
if failed:
res['failed'] = failed
res['msg'] = err
res['results'] = out
return res
if state == 'removed': if state == 'removed':
# check if pkgspec is installed # check if pkgspec is installed
# if not return {changed: False, failed=False } # if not return {changed: False, failed=False }
@ -162,28 +172,57 @@ def ensure(my, state, pkgspec):
pkgs = e +m pkgs = e +m
if not pkgs: if not pkgs:
return { 'changed':False, 'failed':False, 'results':'', 'errors':'' } return { 'changed':False }
my.close() my.close()
del my del my
cmd = 'yum -c %s -d1 -y remove %s' % (yumconf, pkgspec) cmd = 'yum -c %s -d1 -y remove %s' % (yumconf, pkgspec)
rc, out, err = run_yum(cmd) rc, out, err = run_yum(cmd)
# FIXME if we ran the remove - check to make sure it actually removed :(
# look for the pkg in the rpmdb
if rc: if rc:
changed = False changed = False
failed = True failed = True
else: else:
changed = True changed = True
failed = False failed = False
return {'changed': changed, res['changed'] = changed
'failed': failed,
'results':out, if failed:
'errors': err } res['failed'] = failed
#if state == 'latest': res['msg'] = err
# check to see if this pkg is in an update res['results'] = out
# if it is - update it and check to see if it applied
# if it is not - then return return res
# return { 'changed':False, 'failed':False, 'results':'', 'errors':'' }
if state == 'latest':
if not [ pkg_to_dict(po) for
po in my.doPackageLists(pkgnarrow='updates', patterns=[pkgspec]).updates ]:
# there nothing in updates matching this.
return { 'changed':False,}
# we have something in updates
cmd = 'yum -c %s -d1 -y update %s' % (yumconf, pkgspec)
rc, out, err = run_yum(cmd)
# FIXME if it is - update it and check to see if it applied
# check to see if there is no longer an update available for the pkgspec
if rc:
changed = False
failed = True
else:
changed = True
failed = False
res['changed'] = changed
if failed:
res['failed'] = failed
res['msg'] = err
res['results'] = out
return res
return {'changed': False, return {'changed': False,
'failed': True, 'failed': True,
@ -214,7 +253,11 @@ def main():
args = " ".join(sys.argv[1:]) args = " ".join(sys.argv[1:])
items = shlex.split(args) items = shlex.split(args)
# if nothing else changes - it fails # if nothing else changes - it fails
results = { 'changed':False, 'failed':True, 'results':'', 'errors':args } results = { 'changed':False,
'failed':True,
'results':'',
'errors':'',
'msg':args }
params = {} params = {}
for x in items: for x in items:
(k, v) = x.split("=", 1) (k, v) = x.split("=", 1)
@ -228,10 +271,13 @@ def main():
my = yum_base(conf_file=params['conf_file'], cachedir=True) my = yum_base(conf_file=params['conf_file'], cachedir=True)
results = list_stuff(my, params['list']) results = list_stuff(my, params['list'])
elif 'state' in params: elif 'state' in params:
my = yum_base(conf_file=params['conf_file'], cachedir=True) if 'pkg' not in params:
state = params['state'] results['msg'] = "No pkg specified"
pkgspec = params['pkg'] else:
results = ensure(my, state, pkgspec) my = yum_base(conf_file=params['conf_file'], cachedir=True)
state = params['state']
pkgspec = params['pkg']
results = ensure(my, state, pkgspec)
print json.dumps(results) print json.dumps(results)

Loading…
Cancel
Save