From c62952956500632c99b20d80d57e64593690b1c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 13 May 2015 23:21:01 +0200 Subject: [PATCH] qrexec: prefer VM-local service file (if present) over default one MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will allow a service to be overridden per-VM. Signed-off-by: Marek Marczykowski-Górecki --- qrexec/qubes-rpc-multiplexer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrexec/qubes-rpc-multiplexer b/qrexec/qubes-rpc-multiplexer index d90b746..e772d27 100755 --- a/qrexec/qubes-rpc-multiplexer +++ b/qrexec/qubes-rpc-multiplexer @@ -14,7 +14,7 @@ if ! [ $# = 2 ] ; then fi export QREXEC_REMOTE_DOMAIN="$2" -for CFG_FILE in $QUBES_RPC/"$1" $LOCAL_QUBES_RPC/"$1"; do +for CFG_FILE in $LOCAL_QUBES_RPC/"$1" $QUBES_RPC/"$1"; do if [ -s "$CFG_FILE" ]; then break fi