Sha256: aafc7bb51c508920c269100b6e05bd033cc15d11e330b4c24d825095c7503d70

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

#!/bin/bash

### BEGIN INIT INFO
# Provides:          unicorn
# Required-Start:    $local_fs $remote_fs $network $syslog
# Required-Stop:     $local_fs $remote_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the unicorn web server
# Description:       starts unicorn
### END INIT INFO

USER="deploy"
DAEMON=unicorn
PROJECT_PATH="<%= deploy_to %>"
DAEMON_OPTS="-c $PROJECT_PATH/current/config/unicorn.rb -E <%= rails_env %> -D"
NAME=unicorn
DESC="Unicorn app for $USER"
PID="$PROJECT_PATH/shared/pids/unicorn.pid"

case "$1" in
  start)
        CD_TO_APP_DIR="cd $PROJECT_PATH/current"
        START_DAEMON_PROCESS="bundle exec $DAEMON $DAEMON_OPTS"

        echo -n "Starting $DESC: "
        if [ `whoami` = 'root' ]; then
          su - $USER -c "$CD_TO_APP_DIR > /dev/null 2>&1 && $START_DAEMON_PROCESS"
        else
          $CD_TO_APP_DIR > /dev/null 2>&1 && $START_DAEMON_PROCESS
        fi
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
        kill -QUIT `cat $PID`
        echo "$NAME."
        ;;
  restart)
        echo -n "Restarting $DESC: "
        kill -USR2 `cat $PID`
        echo "$NAME."
        ;;
  reload)
        echo -n "Reloading $DESC configuration: "
        kill -HUP `cat $PID`
        echo "$NAME."
        ;;
  *)
        echo "Usage: $NAME {start|stop|restart|reload}" >&2
        exit 1
        ;;
esac

exit 0

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
pixelforce_recipes-0.2 lib/pixelforce_recipes/templates/unicorn_init.erb
pixelforce_recipes-0.1.0 lib/pixelforce_recipes/templates/unicorn_init.erb
pixelforce_cms-2.6 lib/generators/pixelforce_cms/templates/recipes/templates/unicorn_init.erb