mirror of
				https://git.haproxy.org/git/haproxy.git/
				synced 2025-10-31 00:21:00 +01:00 
			
		
		
		
	There were only a few more used as output examples and comments in a few docs, it was the right moment to get rid of them. The file intro.txt which explains how to parse the version also got a hint about the possible presence of a hyphen in the name in older versions.
		
			
				
	
	
		
			138 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| #
 | |
| # chkconfig: - 85 15
 | |
| # description: HAProxy is a TCP/HTTP reverse proxy which is particularly suited \
 | |
| #              for high availability environments.
 | |
| # processname: haproxy
 | |
| # config: /etc/haproxy/haproxy.cfg
 | |
| # pidfile: /var/run/haproxy.pid
 | |
| 
 | |
| # Script Author: Simon Matter <simon.matter@invoca.ch>
 | |
| # Version: 2004060600
 | |
| 
 | |
| # Source function library.
 | |
| if [ -f /etc/init.d/functions ]; then
 | |
|   . /etc/init.d/functions
 | |
| elif [ -f /etc/rc.d/init.d/functions ] ; then
 | |
|   . /etc/rc.d/init.d/functions
 | |
| else
 | |
|   exit 0
 | |
| fi
 | |
| 
 | |
| # Source networking configuration.
 | |
| . /etc/sysconfig/network
 | |
| 
 | |
| # Check that networking is up.
 | |
| [ ${NETWORKING} = "no" ] && exit 0
 | |
| 
 | |
| # This is our service name
 | |
| BASENAME=`basename $0`
 | |
| if [ -L $0 ]; then
 | |
|   BASENAME=`find $0 -name $BASENAME -printf %l`
 | |
|   BASENAME=`basename $BASENAME`
 | |
| fi
 | |
| 
 | |
| BIN=/usr/sbin/$BASENAME
 | |
| 
 | |
| CFG=/etc/$BASENAME/$BASENAME.cfg
 | |
| [ -f $CFG ] || exit 1
 | |
| 
 | |
| PIDFILE=/var/run/$BASENAME.pid
 | |
| LOCKFILE=/var/lock/subsys/$BASENAME
 | |
| 
 | |
| RETVAL=0
 | |
| 
 | |
| start() {
 | |
|   quiet_check
 | |
|   if [ $? -ne 0 ]; then
 | |
|     echo "Errors found in configuration file, check it with '$BASENAME check'."
 | |
|     return 1
 | |
|   fi
 | |
| 
 | |
|   echo -n "Starting $BASENAME: "
 | |
|   daemon $BIN -D -f $CFG -p $PIDFILE
 | |
|   RETVAL=$?
 | |
|   echo
 | |
|   [ $RETVAL -eq 0 ] && touch $LOCKFILE
 | |
|   return $RETVAL
 | |
| }
 | |
| 
 | |
| stop() {
 | |
|   echo -n "Shutting down $BASENAME: "
 | |
|   killproc $BASENAME -USR1
 | |
|   RETVAL=$?
 | |
|   echo
 | |
|   [ $RETVAL -eq 0 ] && rm -f $LOCKFILE
 | |
|   [ $RETVAL -eq 0 ] && rm -f $PIDFILE
 | |
|   return $RETVAL
 | |
| }
 | |
| 
 | |
| restart() {
 | |
|   quiet_check
 | |
|   if [ $? -ne 0 ]; then
 | |
|     echo "Errors found in configuration file, check it with '$BASENAME check'."
 | |
|     return 1
 | |
|   fi
 | |
|   stop
 | |
|   start
 | |
| }
 | |
| 
 | |
| reload() {
 | |
|   if ! [ -s $PIDFILE ]; then
 | |
|     return 0
 | |
|   fi
 | |
| 
 | |
|   quiet_check
 | |
|   if [ $? -ne 0 ]; then
 | |
|     echo "Errors found in configuration file, check it with '$BASENAME check'."
 | |
|     return 1
 | |
|   fi
 | |
|   $BIN -D -f $CFG -p $PIDFILE -sf $(cat $PIDFILE)
 | |
| }
 | |
| 
 | |
| check() {
 | |
|   $BIN -c -q -V -f $CFG
 | |
| }
 | |
| 
 | |
| quiet_check() {
 | |
|   $BIN -c -q -f $CFG
 | |
| }
 | |
| 
 | |
| rhstatus() {
 | |
|   status $BASENAME
 | |
| }
 | |
| 
 | |
| condrestart() {
 | |
|   [ -e $LOCKFILE ] && restart || :
 | |
| }
 | |
| 
 | |
| # See how we were called.
 | |
| case "$1" in
 | |
|   start)
 | |
|     start
 | |
|     ;;
 | |
|   stop)
 | |
|     stop
 | |
|     ;;
 | |
|   restart)
 | |
|     restart
 | |
|     ;;
 | |
|   reload)
 | |
|     reload
 | |
|     ;;
 | |
|   condrestart)
 | |
|     condrestart
 | |
|     ;;
 | |
|   status)
 | |
|     rhstatus
 | |
|     ;;
 | |
|   check)
 | |
|     check
 | |
|     ;;
 | |
|   *)
 | |
|     echo $"Usage: $BASENAME {start|stop|restart|reload|condrestart|status|check}"
 | |
|     exit 1
 | |
| esac
 | |
|  
 | |
| exit $?
 |