diff options
| author | Adrian Likins <alikins@redhat.com> | 2008-07-28 17:28:42 -0400 |
|---|---|---|
| committer | Adrian Likins <alikins@redhat.com> | 2008-07-28 17:28:42 -0400 |
| commit | de261cfe256cc62ce30a8c55de5d467abd0263dc (patch) | |
| tree | 7be675a6e06bea0a318cbafd562f441ad2b3db23 /func | |
| parent | 93dd0927e4fcce49f0d8939a9930d620e196d1c5 (diff) | |
| parent | b4c047fc81929902b3e7c7d4870a4004ab697b1b (diff) | |
Merge branch 'submit' of git://github.com/awood/func into awood_submit
Conflicts:
func/minion/modules/yumcmd.py
Diffstat (limited to 'func')
| -rw-r--r-- | func/minion/modules/yumcmd.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/func/minion/modules/yumcmd.py b/func/minion/modules/yumcmd.py index 0048fc6..9ec52d5 100644 --- a/func/minion/modules/yumcmd.py +++ b/func/minion/modules/yumcmd.py @@ -32,9 +32,10 @@ class Yum(func_module.FuncModule): try: ayum.doLock() if pkg != None: - tx_result = ayum.update(name=pkg) + tx_result = ayum.update(pattern=pkg) else: tx_result = ayum.update() + ayum.buildTransaction() ayum.processTransaction( callback=DummyCallback()) |
