diff --git a/tools/anvil-pcs-wrapper b/tools/anvil-pcs-wrapper index 231a91f8..76098a85 100755 --- a/tools/anvil-pcs-wrapper +++ b/tools/anvil-pcs-wrapper @@ -2,9 +2,9 @@ ( if [ "$1" == "status" ]; then - pcs $@ + pcs "$@" exit $? fi flock -e 200 - pcs $@ + pcs "$@" ) 200>/tmp/pcs.lock diff --git a/tools/anvil-virsh-wrapper b/tools/anvil-virsh-wrapper index c42bc2c4..88dab39e 100755 --- a/tools/anvil-virsh-wrapper +++ b/tools/anvil-virsh-wrapper @@ -2,9 +2,9 @@ ( if [ "$1" != "list" ]; then - virsh $@ + virsh "$@" exit $? fi flock -e 200 - virsh $@ + virsh "$@" ) 200>/tmp/virsh.lock