7762540f85
Signed-off-by: digimer <mkelly@alteeve.ca>
11 lines
116 B
Bash
Executable File
11 lines
116 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
(
|
|
if [ "$1" == "status" ]; then
|
|
pcs "$@"
|
|
exit $?
|
|
fi
|
|
flock -e 200
|
|
pcs "$@"
|
|
) 200>/tmp/pcs.lock
|