aboutsummaryrefslogtreecommitdiff
path: root/lib/beam
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-07-31 12:00:25 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2013-07-31 12:00:25 +0300
commite5232c499a9c2334783823f7988f9d6bef3cf68d (patch)
tree74a1904a73595b748c45c5a749cedcfa397b2bcb /lib/beam
parent6c6ab3125da430bdaafb9bacc88c32279a961525 (diff)
downloadbeam-e5232c499a9c2334783823f7988f9d6bef3cf68d.tar.gz
beam-e5232c499a9c2334783823f7988f9d6bef3cf68d.tar.bz2
Version 1.4.90
* NEWS: Version 1.4.90 * configure.ac: Likewise. * lib/beam/common.in (beam_lock): Bugfix.
Diffstat (limited to 'lib/beam')
-rw-r--r--lib/beam/common.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/beam/common.in b/lib/beam/common.in
index 7e69640..e99433e 100644
--- a/lib/beam/common.in
+++ b/lib/beam/common.in
@@ -52,9 +52,9 @@ beam_lock() {
if [ -r $backup_pidfile ]; then
pid=$(head -n 1 $backup_pidfile)
if [ -z "$pid" ]; then
- abend "pidfile $backup_pidfile exists but is unreadable or empty"
+ abend 1 "pidfile $backup_pidfile exists but is unreadable or empty"
fi
- abend "another beam process (pid $backup_pid) is still running; exiting"
+ abend 1 "another beam process (pid $pid) is still running; exiting"
fi
echo $$ > $backup_pidfile || exit 1
epilogue_hook="$epilogue_hook beam_unlock"

Return to:

Send suggestions and report system problems to the System administrator.