Last active
February 5, 2018 03:28
-
-
Save WganMe/7f7bd0398e80c6bbe7713a5171ccdcd8 to your computer and use it in GitHub Desktop.
chmod +x /etc/init.d/red5-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# For RedHat and cousins: | |
# chkconfig: 2345 85 85 | |
# description: Red5 flash streaming server | |
# processname: red5 | |
# Created By: Sohail Riaz ([email protected]) | |
PROG=red5 | |
RED5_HOME=/opt/red5 | |
DAEMON=$RED5_HOME/$PROG.sh | |
PIDFILE=/var/run/$PROG.pid | |
# Source function library | |
. /etc/rc.d/init.d/functions | |
[ -r /etc/sysconfig/red5 ] && . /etc/sysconfig/red5 | |
RETVAL=0 | |
case "$1" in | |
start) | |
echo -n $"Starting $PROG: " | |
cd $RED5_HOME | |
$DAEMON >/dev/null 2>/dev/null & | |
RETVAL=$? | |
if [ $RETVAL -eq 0 ]; then | |
echo $! > $PIDFILE | |
touch /var/lock/subsys/$PROG | |
fi | |
[ $RETVAL -eq 0 ] && success $"$PROG startup" || failure $"$PROG startup" | |
echo | |
;; | |
stop) | |
echo -n $"Shutting down $PROG: " | |
killproc -p $PIDFILE | |
RETVAL=$? | |
echo | |
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROG | |
;; | |
restart) | |
$0 stop | |
$0 start | |
;; | |
status) | |
status $PROG -p $PIDFILE | |
RETVAL=$? | |
;; | |
*) | |
echo $"Usage: $0 {start|stop|restart|status}" | |
RETVAL=1 | |
esac | |
exit $RETVAL | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment