lilalo

diff l3-agent @ 108:0d49f33696b3

Исправлены ошибки:
* инсталляция агента в .bash_profile - была проблема с переводом строки
* неверное определение агента в памяти в FreeBSD
* по умолчанию в l3cd не писалось имя хоста
author devi
date Sun Nov 12 17:34:47 2006 +0200 (2006-11-12)
parents 4c02cf4123ee
children 658b4ea105c1
line diff
     1.1 --- a/l3-agent	Sun Jun 11 22:07:42 2006 +0300
     1.2 +++ b/l3-agent	Sun Nov 12 17:34:47 2006 +0200
     1.3 @@ -866,7 +866,7 @@
     1.4                  unlink $Config{agent_pidfile}
     1.5                      or die "Can't remove stale pidfile ". $Config{agent_pidfile}. " : $!";
     1.6              }
     1.7 -            elsif ($^O eq 'freebsd' && $pid && `ps axo uid,pid,command | grep '$<\\s*$pid\\s*$Config{"l3-agent"}' 2> /dev/null`) {
     1.8 +            elsif ($^O eq 'freebsd' && defined($pid) && $pid ne "" && not `ps axo uid,pid,command | grep '$< $pid $Config{"l3-agent"}' | grep -v grep 2> /dev/null`) {
     1.9                  print "Removing stale pidfile\n";
    1.10                  unlink $Config{agent_pidfile}
    1.11                      or die "Can't remove stale pidfile ". $Config{agent_pidfile}. " : $!";