anvil/tools/anvil-virsh-wrapper
digimer 7762540f85 Fixed wrappers to handle quoted arguments properly.
Signed-off-by: digimer <mkelly@alteeve.ca>
2023-10-10 10:10:54 -04:00

11 lines
120 B
Bash
Executable File

#!/bin/sh -e
(
if [ "$1" != "list" ]; then
virsh "$@"
exit $?
fi
flock -e 200
virsh "$@"
) 200>/tmp/virsh.lock