Skip to content

Instantly share code, notes, and snippets.

@scuderiaf1
Last active December 20, 2015 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scuderiaf1/6113728 to your computer and use it in GitHub Desktop.
Save scuderiaf1/6113728 to your computer and use it in GitHub Desktop.
hubot campfire init.d example script. set it with something like 'chkconfig --level 345 hubot on'
#!/bin/bash
# myapp daemon
# chkconfig: 345 20 80
# description: myapp daemon
# processname: myapp
DAEMON_PATH="/home/webdv/hubot-master"
DAEMON=bin/hubot
DAEMONOPTS="-a campfire -n webdv-hubot -l hubot"
NAME=hubot
DESC="hubot rocks"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
### campfire specific
export PATH=$PATH:/home/webdv/nodejs/bin
export HUBOT_CAMPFIRE_ROOMS="9999"
export HUBOT_CAMPFIRE_ACCOUNT="accountname"
export HUBOT_CAMPFIRE_TOKEN="22cdb345abc678def901ghi"
export HUBOT_PIVOTAL_TOKEN="baccadef"
export HUBOT_PIVOTAL_PROJECT="Hubot Rocks"
### end campfire specific
case "$1" in
start)
printf "%-50s" "Starting $NAME..."
cd $DAEMON_PATH
PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
#echo "Saving PID" $PID " to " $PIDFILE
if [ -z $PID ]; then
printf "%s\n" "Fail"
else
echo $PID > $PIDFILE
printf "%s\n" "Ok"
fi
;;
status)
printf "%-50s" "Checking $NAME..."
if [ -f $PIDFILE ]; then
PID=`cat $PIDFILE`
if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
printf "%s\n" "Process dead but pidfile exists"
else
echo "Running"
fi
else
printf "%s\n" "Service not running"
fi
;;
stop)
printf "%-50s" "Stopping $NAME"
PID=`cat $PIDFILE`
cd $DAEMON_PATH
if [ -f $PIDFILE ]; then
kill -HUP $PID
printf "%s\n" "Ok"
rm -f $PIDFILE
else
printf "%s\n" "pidfile not found"
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {status|start|stop|restart}"
exit 1
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment