#!/bin/bash # DO NOT EDIT - This file is being maintained by Chef start() { start-stop-daemon --start --chuid rails:adm --background --make-pidfile --pidfile /var/run/api-statistics.pid --exec /usr/local/bin/api-statistics } stop() { start-stop-daemon --stop --retry 300 --pidfile /var/run/api-statistics.pid } case "$1" in start) start ;; stop) stop ;; restart) stop || exit $? start ;; esac