Skip to content

Commit

Permalink
qrexec: prefer VM-local service file (if present) over default one
Browse files Browse the repository at this point in the history
This will allow a service to be overridden per-VM.

Signed-off-by: Marek Marczykowski-Górecki <[email protected]>
  • Loading branch information
marmarek committed May 19, 2016
1 parent 67d028f commit 59193c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qrexec/qubes-rpc-multiplexer
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 59193c0

Please sign in to comment.