Sha256: e1671461583e0c7cedf62238e263e0bd419b65f722c7bc78582f192f64c137a1
Contents?: true
Size: 669 Bytes
Versions: 7
Compression:
Stored size: 669 Bytes
Contents
#!/bin/sh # # Author: Jamie Winsor (<jamie@vialstudios.com>) # # chkconfig: 345 99 1 # Description: Bluepill loader for <%= @service_name %> # Provides: <%= @service_name %> # Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 BLUEPILL_BIN=<%= node['bluepill']['bin'] %> BLUEPILL_CONFIG=<%= @config_file %> SERVICE_NAME=<%= @service_name %> case "$1" in start) echo "Loading bluepill configuration for $SERVICE_NAME " $BLUEPILL_BIN load $BLUEPILL_CONFIG ;; stop) $BLUEPILL_BIN $SERVICE_NAME stop $BLUEPILL_BIN $SERVICE_NAME quit ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac
Version data entries
7 entries across 7 versions & 1 rubygems