]> git.openstreetmap.org Git - chef.git/blob - cookbooks/supybot/templates/default/supybot.init.erb
The supybot tmp directory needs to be inside the data directory
[chef.git] / cookbooks / supybot / templates / default / supybot.init.erb
1 #!/bin/bash
2
3 # DO NOT EDIT - This file is being maintained by Chef
4
5 start() {
6   start-stop-daemon --start --chuid supybot --background --make-pidfile --pidfile /var/run/supybot.pid --exec /usr/bin/supybot -- /etc/supybot/supybot.conf
7 }
8
9 stop() {
10   start-stop-daemon --stop --retry 300 --pidfile /var/run/supybot.pid
11 }
12
13 case "$1" in
14   start)
15     start
16     ;;
17   stop)
18     stop
19     ;;
20   restart)
21     stop || exit $?
22     start
23     ;;
24 esac