Sha256: a41a45bbbc74d18f58dcd7d2653310bb33e60e2161527ab6d4ee3da7b8616c56
Contents?: true
Size: 1.4 KB
Versions: 21
Compression:
Stored size: 1.4 KB
Contents
#!/bin/bash ### BEGIN INIT INFO # Provides: sidekiq # 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 sidekiq web server # Description: starts sidekiq ### END INIT INFO USER="<%= fetch(:user) %>" DAEMON=sidekiq PROJECT_PATH="<%= fetch(:deploy_to) %>" NAME=sidekiq DESC="Sidekiq app for $USER" PID="$PROJECT_PATH/shared/pids/sidekiq.pid" LOGFILE="$PROJECT_PATH/shared/log/sidekiq.log" CD_TO_APP_DIR="cd $PROJECT_PATH/current" case "$1" in start) START_DAEMON_PROCESS="bundle exec sidekiq -d -e <%= fetch(:rails_env) %> -L $LOGFILE -P $PID" echo -n "Starting $DESC: " if [ `whoami` = 'root' ]; then su - $USER -c "$CD_TO_APP_DIR > /dev/null 2>&1 && $START_DAEMON_PROCESS" else /bin/bash -l -c "$CD_TO_APP_DIR > /dev/null 2>&1 && $START_DAEMON_PROCESS" fi echo "$NAME." ;; stop) echo -n "Stopping $DESC: " if [ `whoami` = 'root' ]; then su - $USER -c "$CD_TO_APP_DIR && bundle exec sidekiqctl stop $PID 60" else /bin/bash -l -c "$CD_TO_APP_DIR && bundle exec sidekiqctl stop $PID 60" fi echo "$NAME." ;; *) echo "Usage: $NAME {start|stop|restart|reload}" >&2 exit 1 ;; esac exit 0
Version data entries
21 entries across 21 versions & 3 rubygems