mirror of
https://github.com/anope/anope.git
synced 2026-07-02 17:53:13 +02:00
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
This commit is contained in:
parent
c896700616
commit
44c4af9df4
@@ -2,10 +2,11 @@ Anope Version S V N
|
||||
-------------------
|
||||
Provided by Anope Dev. <dev@anope.org> - 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
|
||||
-------------------
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
+5
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user