touch up to yum module.
fix a couple of bugs comment about state='latest'
This commit is contained in:
parent
fb76cd8663
commit
bc321b7cdc
1 changed files with 10 additions and 3 deletions
11
yum
11
yum
|
@ -77,7 +77,7 @@ def list_stuff(my, stuff):
|
||||||
s = 'disabled'
|
s = 'disabled'
|
||||||
if repo.enabled:
|
if repo.enabled:
|
||||||
s = 'enabled'
|
s = 'enabled'
|
||||||
r[repo.id] = s
|
t[repo.id] = s
|
||||||
r.append(t)
|
r.append(t)
|
||||||
|
|
||||||
return r
|
return r
|
||||||
|
@ -179,6 +179,11 @@ def ensure(my, state, pkgspec):
|
||||||
'failed': failed,
|
'failed': failed,
|
||||||
'results':out,
|
'results':out,
|
||||||
'errors': err }
|
'errors': err }
|
||||||
|
#if state == 'latest':
|
||||||
|
# check to see if this pkg is in an update
|
||||||
|
# if it is - update it and check to see if it applied
|
||||||
|
# if it is not - then return
|
||||||
|
# return { 'changed':False, 'failed':False, 'results':'', 'errors':'' }
|
||||||
|
|
||||||
return {'changed': False,
|
return {'changed': False,
|
||||||
'failed': True,
|
'failed': True,
|
||||||
|
@ -205,9 +210,11 @@ def main():
|
||||||
# update="args"?
|
# update="args"?
|
||||||
#
|
#
|
||||||
|
|
||||||
results = {}
|
|
||||||
args = " ".join(sys.argv[1:])
|
args = " ".join(sys.argv[1:])
|
||||||
items = shlex.split(args)
|
items = shlex.split(args)
|
||||||
|
# if nothing else changes - it fails
|
||||||
|
results = { 'changed':False, 'failed':True, 'results':'', 'errors':args }
|
||||||
params = {}
|
params = {}
|
||||||
for x in items:
|
for x in items:
|
||||||
(k, v) = x.split("=", 1)
|
(k, v) = x.split("=", 1)
|
||||||
|
|
Loading…
Reference in a new issue