aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-03-21 13:34:51 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2013-03-21 13:34:51 +0200
commit6c6ab3125da430bdaafb9bacc88c32279a961525 (patch)
treeef8f4005504a8545eaab5b111890649ba0302d2c
parent194f4b1204d6e49ba0af7dd761f8c794ba37c035 (diff)
downloadbeam-6c6ab3125da430bdaafb9bacc88c32279a961525.tar.gz
beam-6c6ab3125da430bdaafb9bacc88c32279a961525.tar.bz2
Prevent reentrant invocations. Minor bugfix.
At startup a pid file is checked. If it exists, another beam process is assumed to be running and start up is aborted. Otherwise a new pid file is created. The existing pid is removed before exiting (by epilogue_hook). * backup.in (prologue_hook): Prepend beam_lock. * lib/beam/common.in (backup_pidfile): New global. (beam_lock,beam_unlock): New functions. * lib/beam/s3.sh (s3_getmpoint): Fix regexp to take into account s3backer invocation without --vhost.
-rw-r--r--backup.in1
-rw-r--r--lib/beam/common.in17
-rw-r--r--lib/beam/s3.sh12
3 files changed, 26 insertions, 4 deletions
diff --git a/backup.in b/backup.in
index 615fa12..ca479b1 100644
--- a/backup.in
+++ b/backup.in
@@ -124,2 +124,3 @@ backup() {
124umask ${backup_umask:-077} 124umask ${backup_umask:-077}
125prologue_hook="beam_lock $prologue_hook"
125 126
diff --git a/lib/beam/common.in b/lib/beam/common.in
index 1be075e..7e69640 100644
--- a/lib/beam/common.in
+++ b/lib/beam/common.in
@@ -32,2 +32,3 @@ backup_verbose=
32backup_logfile="/var/log/backup" 32backup_logfile="/var/log/backup"
33backup_pidfile="/var/run/beam.pid"
33backup_tmp_dir=/tmp 34backup_tmp_dir=/tmp
@@ -49,2 +50,18 @@ abend() {
49 50
51beam_lock() {
52 if [ -r $backup_pidfile ]; then
53 pid=$(head -n 1 $backup_pidfile)
54 if [ -z "$pid" ]; then
55 abend "pidfile $backup_pidfile exists but is unreadable or empty"
56 fi
57 abend "another beam process (pid $backup_pid) is still running; exiting"
58 fi
59 echo $$ > $backup_pidfile || exit 1
60 epilogue_hook="$epilogue_hook beam_unlock"
61}
62
63beam_unlock() {
64 rm -f $backup_pidfile
65}
66
50tarcode() { 67tarcode() {
diff --git a/lib/beam/s3.sh b/lib/beam/s3.sh
index de71456..d2fcfe6 100644
--- a/lib/beam/s3.sh
+++ b/lib/beam/s3.sh
@@ -28,5 +28,12 @@ s3_getmpoint()
28 case $1 in 28 case $1 in
29# Sample mount output, split into several lines:
30# a) With --vhost:
31# http://BUCKETNAME.s3.amazonaws.com/ on /mnt/s3backer type fuse.s3backer
32# (rw,nosuid,nodev,allow_other,default_permissions)
33# b) Without --vhost:
34# http://s3.amazonaws.com/BUCKETNAME/ on /mnt/s3backer type fuse.s3backer
35# (rw,nosuid,nodev,allow_other,default_permissions)
29 backer) 36 backer)
30 mount -tfuse.s3backer | 37 mount -tfuse.s3backer |
31 awk '/https?:\/\/'$backup_bucket_name'/ { print $3 }';; 38 awk '/https?:\/\/.*'$backup_bucket_name'/ { print $3 }';;
32 s3) 39 s3)
@@ -52,5 +59,2 @@ s3_mount() {
52 59
53# Sample mount output, split into several lines:
54# http://finox-backup-fs.s3.amazonaws.com/ on /mnt/s3backer type fuse.s3backer
55# (rw,nosuid,nodev,allow_other,default_permissions)
56 set -- $(s3_getmpoint backer) 60 set -- $(s3_getmpoint backer)

Return to:

Send suggestions and report system problems to the System administrator.