1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

BUILD : 1.7.3 (109) BUGS : NOTES : make install now moves anoperc to bin, also typos and one bug in anoperc fixed (ps ux changed to ps auxw which was failing when paths were too long to fit on the screen)

git-svn-id: svn://svn.anope.org/anope/trunk@109 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@85 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-05-16 21:26:40 +00:00
parent 97a04bdcb3
commit 9204bb30ab
4 changed files with 13 additions and 7 deletions
+1
View File
@@ -1,6 +1,7 @@
Anope Version 1.7.3
-------------------
Provided by Anope Dev. <dev@anope.org> - 2004
05/16 A make install will now move anoperc to bin, fixed anoperc bug
05/15 A New standard Changes file format.
05/15 A BSCaseSensitive directive for a cAsE sEnSiTiVe badword kicker.
05/14 A Support for +a/-a on PTLink ircd.
+1
View File
@@ -75,6 +75,7 @@ distclean: spotless
install: $(PROGRAM) languages
$(INSTALL) services $(BINDEST)/services
$(INSTALL) bin/anoperc $(BINDEST)/anoperc
rm -f $(BINDEST)/listnicks $(BINDEST)/listchans
ln $(BINDEST)/services $(BINDEST)/listnicks
ln $(BINDEST)/services $(BINDEST)/listchans
+6 -6
View File
@@ -31,7 +31,7 @@ fi
PID=`cat $ANOPEBIN$PIDFILE`
if [ ! `ps ux | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then
if [ ! `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then
echo "Warning: Anope is not currently running"
exit 1
fi
@@ -51,7 +51,7 @@ if [ "$1" = "start" ] ; then
if [ -f $ANOPEBIN$PIDFILE ] ; then
PID=`cat $ANOPEBIN$PIDFILE`
if [ `ps ux | grep $ANOPROG | grep $PID | grep -v -c grep` = 1 ] ; then
if [ `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` = 1 ] ; then
echo "Warning! Anope is already running"
exit 1
fi
@@ -61,7 +61,7 @@ fi
$ANOPEBIN$ANOPROG $*
sleep 1
if [ ! -f $ANOPEBIN$PIDFILE ] ; then
echo "Unfortunatly it seems Anope did not start successfully"
echo "Unfortunately it seems Anope did not start successfully"
echo "This error has been logged in your Anope Log file"
echo "Located in "$ANOPEBIN"logs/"
echo "This may help you diagnose the problem"
@@ -69,8 +69,8 @@ fi
exit 1
fi
PID=`cat $ANOPEBIN$PIDFILE`
if [ ! `ps ux | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then
echo "Unfortunatly it seems Anope did not start successfully"
if [ ! `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` ] ; then
echo "Unfortunately it seems Anope did not start successfully"
echo "This error has been logged in your Anope Log file"
echo "Located in "$ANOPEBIN"logs/"
echo "This may help you diagnose the problem"
@@ -86,7 +86,7 @@ elif [ "$1" = "stop" ] ; then
elif [ "$1" = "status" ] ; then
if [ -f $ANOPEBIN$PIDFILE ] ; then
PID=`cat $ANOPEBIN$PIDFILE`
if [ `ps ux | grep $ANOPROG | grep $PID | grep -v -c grep` = 1 ] ; then
if [ `ps auxw | grep $ANOPROG | grep $PID | grep -v -c grep` = 1 ] ; then
echo "Anope is currently running"
exit 1
fi
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="3"
VERSION_BUILD="108"
VERSION_BUILD="109"
# $Log$
#
# BUILD : 1.7.3 (109)
# BUGS :
# NOTES : make install now moves anoperc to bin, also typos and one bug in anoperc fixed (ps ux changed to ps auxw which was failing when paths were too long to fit on the screen)
#
# BUILD : 1.7.3 (108)
# NOTES : Anope 1.7.3 Release
#