From: Yura Kalinichenko <yuk@iceb.vinnitsa.com>
To: ALT Linux Community <community@lists.altlinux.org>
Subject: Re: [Comm] [Fwd: [Sysadmins] как запустить Popsneaker..]
Date: Thu, 09 Mar 2006 22:27:47 +0200
Message-ID: <1141936068.3223.12.camel@yuk.home.int> (raw)
In-Reply-To: <440FD3B9.2080800@ostap.ru>
В Чтв, 09/03/2006 в 11:05 +0400, Коротков Георгий пишет:
> чтобы он всетаки всегда запускался
> сейчас дело обстоит так, что успешным бывает одна из десяти-двадцати
> попыток.. а может и так что десять подряд удачных
> причем в случае неудач - никаких воплей ни в собственном логе ни в
> системном нет
Я обошел это так: имеется скрипт /etc/ppp/ip-up.d/zzzmail, который у
меня занимается отправкой/приемом почты. Перед приемом (fetchmail) я
вставил следующее:
LOG=/var/log/ppp.log
SERVERNAME=pop.vinnitsa.com
errcnt=30
while [ $errcnt -gt 0 ]; do
ping -c 3 $SERVERNAME >> $LOG 2>&1
if [ $? -eq 0 ]; then
break
fi
echo "Ping status=$?" >> $LOG
errcnt=`expr $errcnt - 1`
sleep 1
done
echo "Ping count=$errcnt" >> $LOG
if [ $errcnt -eq 0 ]; then
echo "Ping failure." >> $LOG
kill `cat /var/run/$1.pid`
exit 1
fi
while [ $errcnt -gt 0 ]; do
popsneaker $SERVERNAME
if [ $? -eq 0 ]; then
break
fi
errcnt=`expr $errcnt - 1`
sleep 1
done
if [ $errcnt -eq 0 ]; then
echo "popsneaker failure." >> $LOG
kill `cat /var/run/$1.pid`
exit 1
fi
--
Yura Kalinichenko
prev parent reply other threads:[~2006-03-09 20:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-09 7:05 Коротков Георгий
2006-03-09 7:08 ` Andrey Rahmatullin
2006-03-09 7:50 ` Yuri Horoshkov
2006-03-09 8:08 ` Коротков Георгий
2006-03-09 17:15 ` Andrey Rahmatullin
2006-03-09 20:27 ` Yura Kalinichenko [this message]
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=1141936068.3223.12.camel@yuk.home.int \
--to=yuk@iceb.vinnitsa.com \
--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