ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Yura Kalinichenko <yuk@kalina.in.ua>
To: ALT Linux Community general discussions <community@lists.altlinux.org>
Subject: Re: [Comm] Зеркалирование по расписанию.
Date: Sat, 21 Mar 2009 23:57:26 +0200
Message-ID: <49C562C6.9030704@kalina.in.ua> (raw)
In-Reply-To: <49C54DCD.1050001@mail.ru>

Vladimir Karpinsky пишет:
> Здравствуйте!
>
> Alexey Borovskoy пишет:
>> * Среда 10 декабря 2008 Vladimir Karpinsky
>>
>> --кусь--
>>
>> #!/bin/bash
>>
>> exit_handler() {
>>     trap - EXIT
>>     [ -f "$LOCK_FILE" ] && rm -f "$LOCK_FILE"
>> }
>>
>> trap exit_handler HUP PIPE INT QUIT TERM EXIT
>>
>> date> "$LOCK_FILE"
>>
>> --кусь--
>>
>> Логику дописать по вкусу
>
> Логику дописал, уже работает пару месяцев, но сегодня углядел 
> проблемы: если на скрипт, содержащий вышележащий кусок натравить kill 
> -9, то lock-файл не уничтожается. Можно ли как-то такой вариант учесть.
>
> Второй момент: я запускаю этот же скрипт второй раз при наличии 
> lock-файла, он обнаруживает lock-файл, ничего не делает и выходит с 
> ненулевым кодом. Всё казалось бы хорошо. Но: он выходит-то по команде 
> exit и автоматом убивает lock-файл, т.е. при третьем запуске скрипта 
> уже lock-файл не будет найден, и скрипт будет пытаться работать, чего 
> бы не хотелось. Не могу сообразить, как это обойти.
>
Обычно блокировки выполняются несколько другим образом. Вот пример, 
надеюсь, достаточно понятно, что ваших проблем здесь не будет:

---------------------------cut-----------------------------
USE_LOCK=yes
LOCKDIR=/tmp
LOCKFILE=test.pid
mypid=$$

test_lock() {

  LOCK_LOOP_COUNT=10
  test "$USE_LOCK" \!= "yes" && return 0
  set -o noclobber
  until echo $mypid > $LOCKDIR/$LOCKFILE ; do
     kill -0 `cat $LOCKDIR/$LOCKFILE` || rm -f $LOCKDIR/$LOCKFILE
     if [ -f  "$LOCKDIR/$LOCKFILE" ]; then
       echo "Locking ($LOCK_LOOP_COUNT)..."
       let LOCK_LOOP_COUNT--
       if [ $LOCK_LOOP_COUNT -eq 0 ]; then
          break
       else
          sleep 1
       fi
     else
       echo "Remove stalled lock"
     fi
  done
  set +o noclobber
  if [ $LOCK_LOOP_COUNT -eq 0 ]; then
     return 1
  else
     return 0
  fi
}

test_unlock() {
  test -f $LOCKDIR/$LOCKFILE -a $mypid -eq `cat $LOCKDIR/$LOCKFILE` && rm -f $LOCKDIR/$LOCKFILE
  return $?
}


---------------------------cut-----------------------------


-- 
SY, 
   Yura Kalinichenko



  reply	other threads:[~2009-03-21 21:57 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-10  9:34 Vladimir Karpinsky
2008-12-10  9:53 ` Yuri Bushmelev
2008-12-10  9:56 ` Alexey Borovskoy
2008-12-10 10:43   ` Vladimir Karpinsky
2008-12-10 13:16     ` Alexey Borovskoy
2008-12-10 15:18       ` Vladimir Karpinsky
2009-03-21 20:27   ` Vladimir Karpinsky
2009-03-21 21:57     ` Yura Kalinichenko [this message]
2009-03-22  6:51       ` Vladimir Karpinsky
2009-03-22 16:38         ` Yura Kalinichenko
2009-03-22 18:51           ` Vladimir Karpinsky
2009-03-22 19:53             ` Yura Kalinichenko
2009-03-23  6:55               ` Vladimir Karpinsky
2009-03-23  7:20                 ` Andrey Rahmatullin
2009-03-25 19:29       ` Vladimir Karpinsky
2009-03-25 19:32         ` Andrey Rahmatullin
2009-03-25 19:52           ` Vladimir Karpinsky
2009-03-25 21:42         ` Yura Kalinichenko
2009-03-26  5:50           ` Vladimir Karpinsky
2009-03-26 10:06           ` Sergey Vlasov
2009-03-26 18:21             ` Yura Kalinichenko
2008-12-10 17:00 ` Vladimir Karpinsky
2008-12-10 17:18   ` Denis Nazarov
2008-12-10 17:36     ` Vladimir Karpinsky
2008-12-10 19:24   ` Sergey Vlasov
2008-12-11  5:40     ` Vladimir Karpinsky
2008-12-13 12:19 ` Vladimir Karpinsky
2008-12-13 13:28   ` Костарев Алексей
2008-12-13 15:53     ` Vladimir Karpinsky
2008-12-14 17:37       ` Michael Shigorin
2008-12-14 18:49         ` Vladimir Karpinsky
2008-12-15  7:33           ` Костарев Алексей
2008-12-15  7:58             ` Vladimir Karpinsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49C562C6.9030704@kalina.in.ua \
    --to=yuk@kalina.in.ua \
    --cc=community@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git