From 44c4af9df49d8280bda3cb128523b5b846f7dfdd Mon Sep 17 00:00:00 2001 From: "ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Wed, 30 Jun 2004 19:29:09 +0000 Subject: [PATCH] BUILD : 1.7.4 (223) BUGS : NOTES : Anope crontab failed because when path was too long the ps ux was cut short so grep failed. ps ux was changed to ps auwx to stop this problem (w is stops cutting the lines short) git-svn-id: svn://svn.anope.org/anope/trunk@223 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@160 5417fbe8-f217-4b02-8779-1006273d7864 --- Changes | 9 +++++---- data/example.chk | 2 +- version.log | 6 +++++- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index 18491c30f..5495cc8f2 100644 --- a/Changes +++ b/Changes @@ -2,10 +2,11 @@ Anope Version S V N ------------------- Provided by Anope Dev. - 2004 06/18 A Added proper Bahamut1.8 support. [ #55] -06/28 F Fixed compiling bug with UltimateIRCd3, ViagraIRCd, Rage2IRCd [ #00] -06/26 F Removed TSMODE from usermodes for bahamut [#112] -06/22 F Changed all strcasecmp's to stricmp's [ #00] -06/20 F PTLink server support [ #00] +06/30 F Fixed bug which caused failure in anope crontab script. [ #00] +06/28 F Fixed compiling bug with UltimateIRCd3, ViagraIRCd, Rage2IRCd. [ #00] +06/26 F Removed TSMODE from usermodes for bahamut. [#112] +06/22 F Changed all strcasecmp's to stricmp's. [ #00] +06/20 F PTLink server support. [ #00] Anope Version 1.7.4 ------------------- diff --git a/data/example.chk b/data/example.chk index fe7632417..6f2a2343d 100644 --- a/data/example.chk +++ b/data/example.chk @@ -34,7 +34,7 @@ cd $ANOPATH if [ -f $ANOPIDF ] then ANOPID=`cat $ANOPIDF` - if [ `ps ux| grep $ANOPROG | grep $ANOPID | grep -v -c grep` = 1 ] + if [ `ps auwx | grep $ANOPROG | grep $ANOPID | grep -v -c grep` = 1 ] then exit fi diff --git a/version.log b/version.log index 82eddea64..38dff1599 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="218" +VERSION_BUILD="223" # $Log$ # +# BUILD : 1.7.4 (223) +# BUGS : +# NOTES : Anope crontab failed because when path was too long the ps ux was cut short so grep failed. ps ux was changed to ps auwx to stop this problem (w is stops cutting the lines short) +# # BUILD : 1.7.4 (218) # BUGS : # NOTES : Fixed compiling problem with Rage and Viagra