From ab269f9eba923c543c6095d80e9cf1b196d9d3a4 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Fri, 8 Jun 2012 04:36:33 +0200 Subject: [PATCH] vm: fix yum-qubes-hooks Program must be given as full path to qrexec_client_vm - it is passed directly to execv. --- misc/yum-qubes-hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/yum-qubes-hooks.py b/misc/yum-qubes-hooks.py index f49eac2f..9d851bf9 100644 --- a/misc/yum-qubes-hooks.py +++ b/misc/yum-qubes-hooks.py @@ -39,4 +39,4 @@ def posttrans_hook(conduit): filtered_updates = filter(lambda x: x not in all, pkg_list.updates) # Notify dom0 about left updates count - subprocess.call(['/usr/lib/qubes/qrexec_client_vm', 'dom0', 'qubes.NotifyUpdates', 'echo', str(len(filtered_updates))]) + subprocess.call(['/usr/lib/qubes/qrexec_client_vm', 'dom0', 'qubes.NotifyUpdates', '/bin/echo', str(len(filtered_updates))])