Skip to content

Instantly share code, notes, and snippets.

@getaclue00
Created June 14, 2019 09:57
Show Gist options
  • Save getaclue00/d9cf7f47b66add6d451a7c761d44dd8c to your computer and use it in GitHub Desktop.
Save getaclue00/d9cf7f47b66add6d451a7c761d44dd8c to your computer and use it in GitHub Desktop.
# /etc/init/puma-manager.conf - manage a set of Pumas
# This example config should work with Ubuntu 12.04+. It
# allows you to manage multiple Puma instances with
# Upstart, Ubuntu's native service management tool.
#
# See puma.conf for how to manage a single Puma instance.
#
# Use "stop puma-manager" to stop all Puma instances.
# Use "start puma-manager" to start all instances.
# Use "restart puma-manager" to restart all instances.
# Crazy, right?
#
description "Manages the set of puma processes"
# This starts upon bootup and stops on shutdown
start on runlevel [2345]
stop on runlevel [06]
# Set this to the number of Puma processes you want
# to run on this machine
env PUMA_CONF="/etc/puma.conf"
pre-start script
for i in `cat $PUMA_CONF`; do
app=`echo $i | cut -d , -f 1`
logger -t "puma-manager" "Starting $app"
start puma app=$app
done
end script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment