Various Bug Fixes including
* connects to the proper server from the config file
* feof (stream) loop is better than the prior solution
Still missing / correctable
* valgrind complains about uninitialized values
* strdup must be freed, but i don't know where...
committer: Markus Bröker <mbroeker@largo.homelinux.org>
#!/bin/shBINARY="mcbot"DIRECTORY="/usr/local/sbin/"LANGUAGE="de_DE.UTF-8"[[ ! -x "${DIRECTORY}/${BINARY}" ]] && exit 0start() { echo -n "Starting ${BINARY}" su - nobody -c "LANG=$LANGUAGE ${DIRECTORY}/${BINARY} &>/var/lib/nobody/mcbot-`date "+%d-%m-%y"`.log &" if [ "$?" == 0 ]; then echo " [started]" fi}stop() { echo -n "Stopping ${BINARY}" pid=`pidof ${BINARY}` if [ "$pid" != "" ]; then kill -TERM `pidof ${BINARY}` sleep 5 fi echo " [stopped]"}status() { pid="`pidof ${BINARY}`" if [ "$pid" != "" ]; then echo "${BINARY} is started as ${pid}" else echo "${BINARY} is not running" fi}case "$1" in start) start ;; stop) stop ;; status) status ;; restart) echo "Restarting ${BINARY}" stop start ;; *) echo "Usage: start|stop|restart|status" ;;esacexit 0