summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-29 19:36:45 +0300
committermakkalot <makkalot@gmail.com>2008-07-29 19:36:45 +0300
commitb96813785b9b9903107dadbcf715c97ff08d45be (patch)
tree30dcedd616fe346ab666039f7ff1282c7598778d /func
parent7c3b7e74950b0d940ac73268d9668bf582b76101 (diff)
parent40e44df8ae7badeeeb7e4702949db1f1862c6645 (diff)
downloadfunc-b96813785b9b9903107dadbcf715c97ff08d45be.tar.gz
func-b96813785b9b9903107dadbcf715c97ff08d45be.tar.xz
func-b96813785b9b9903107dadbcf715c97ff08d45be.zip
Merge branch 'master' of git://git.fedorahosted.org/func
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/yumcmd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/func/minion/modules/yumcmd.py b/func/minion/modules/yumcmd.py
index 70182a5..072b907 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())