mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
23 lines
378 B
Bash
Executable file
23 lines
378 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LOCKDIR=/var/spool/lock
|
|
|
|
case "$1" in
|
|
"") echo "Usage: unlock lockfile"; exit 1 ;;
|
|
.*) echo "Usage: unlock lockfile"; exit 1 ;;
|
|
esac
|
|
|
|
if [ -f $LOCKDIR/$1 ]
|
|
then
|
|
if [ `wc -c < $LOCKDIR/$1` -eq 4 ]
|
|
then
|
|
rm -f $LOCKDIR/$1
|
|
exit 0
|
|
else
|
|
echo "Usage: unlock lockfile"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "lockfile" $LOCKDIR/$1 "does not exist"
|
|
exit 1
|
|
fi
|