projects
/
cgilite
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
595fbc5
)
bugfix: allow positive return of LOCK()
author
Paul Hänsch
<paul@plutz.net>
Sun, 15 Jul 2018 15:25:35 +0000
(17:25 +0200)
committer
Paul Hänsch
<paul@plutz.net>
Sun, 15 Jul 2018 15:25:35 +0000
(17:25 +0200)
storage.sh
patch
|
blob
|
history
diff --git
a/storage.sh
b/storage.sh
index 1d8764be745b1c0168a7b56302fc42340be272de..8939fdc7c83fcb9bdde8cc1738ed1e4baabc3963 100755
(executable)
--- a/
storage.sh
+++ b/
storage.sh
@@
-42,7
+42,7
@@
LOCK(){
sleep 1
done
printf '%i\n' $$ >"${lock}/pid"
- return
1
+ return
0
}
RELEASE(){
@@
-54,6
+54,7
@@
RELEASE(){
printf '%i\n' $$ >"${lock}/pid"
return 1
fi
+ return 0
else
printf 'Refusing to release foreign lock: %s\n' "$lock" >&2
return 1