X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9fd056986b8782f8af1715113e0a04e6655ae35c..a98f185bb1612b38b9a2eaed85ac9711ca2afe9f:/cookbooks/planet/templates/default/streaming.init.erb diff --git a/cookbooks/planet/templates/default/streaming.init.erb b/cookbooks/planet/templates/default/streaming.init.erb deleted file mode 100644 index 85ed3ef67..000000000 --- a/cookbooks/planet/templates/default/streaming.init.erb +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -# DO NOT EDIT - This file is being maintained by Chef - -start() { - start-stop-daemon --start --chuid planet --background --make-pidfile --pidfile /var/run/<%= @service %>.pid --exec /usr/local/bin/<%= @service %> -} - -stop() { - start-stop-daemon --stop --retry 300 --pidfile /var/run/<%= @service %>.pid -} - -status() { - start-stop-daemon --status --pidfile /var/run/<%= @service %>.pid -} - -case "$1" in - start) - start - ;; - stop) - stop - ;; - restart) - stop || exit $? - start - ;; - status) - status - ;; -esac