mirror of
https://github.com/anope/anope.git
synced 2026-07-07 11:23:13 +02:00
BUILD : 1.7.8 (652) BUGS : NOTES : Changed anoperc to use numerics for compliance.
git-svn-id: svn://svn.anope.org/anope/trunk@652 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@500 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
e97d88fa34
commit
30b5214eef
@@ -10,6 +10,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005
|
||||
02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00]
|
||||
02/05 A Support for Unreal 3.2 +I channel mode. [ #00]
|
||||
02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00]
|
||||
03/29 F Changed anoperc script to use kill numerics for compliance. [ #00]
|
||||
03/28 F Moved where GlobalOnCycleUP is located so it now works. [#336]
|
||||
03/28 F Fixed the change display name function to update correct db table.[#337]
|
||||
03/28 F Changed the ultimate3 usermode for SRA. [#326]
|
||||
|
||||
+3
-3
@@ -88,7 +88,7 @@ elif [ "$1" = "stop" ] ; then
|
||||
isAnopeRunning
|
||||
echo "Terminating Anope"
|
||||
PID=`cat $ANOPEBIN$PIDFILE`
|
||||
kill -SIGTERM $PID
|
||||
kill -15 $PID
|
||||
|
||||
elif [ "$1" = "status" ] ; then
|
||||
if [ -f $ANOPEBIN$PIDFILE ] ; then
|
||||
@@ -105,13 +105,13 @@ elif [ "$1" = "restart" ] ; then
|
||||
isAnopeRunning
|
||||
echo "Restarting Anope"
|
||||
PID=`cat $ANOPEBIN$PIDFILE`
|
||||
kill -SIGHUP $PID
|
||||
kill -1 $PID
|
||||
|
||||
elif [ "$1" = "rehash" ] ; then
|
||||
isAnopeRunning
|
||||
echo "Saving Databases and Rehashing Configuration"
|
||||
PID=`cat $ANOPEBIN$PIDFILE`
|
||||
kill -SIGUSR2 $PID
|
||||
kill -12 $PID
|
||||
|
||||
elif [ "$1" = "version" ] ; then
|
||||
$ANOPEBIN$ANOPROG -version
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="8"
|
||||
VERSION_BUILD="651"
|
||||
VERSION_BUILD="652"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.8 (652)
|
||||
# BUGS :
|
||||
# NOTES : Changed anoperc to use numerics for compliance.
|
||||
#
|
||||
# BUILD : 1.7.8 (651)
|
||||
# BUGS : none
|
||||
# NOTES : Applied shadowirc.c patch from nenolod.
|
||||
|
||||
Reference in New Issue
Block a user