group "root"
end
-template "/etc/init.d/supybot" do
- source "supybot.init.erb"
- owner "root"
- group "root"
- mode 0o755
+systemd_service "supybot" do
+ description "OpenStreetMap IRC Robot"
+ after "network.target"
+ user "supybot"
+ exec_start "/usr/bin/supybot /etc/supybot/supybot.conf"
+ private_tmp true
+ private_devices true
+ protect_system true
+ protect_home true
+ no_new_privileges true
+ restart "on-failure"
end
service "supybot" do
action [:enable, :start]
- supports :restart => true
subscribes :restart, "template[/etc/supybot/supybot.conf]"
subscribes :restart, "template[/etc/supybot/channels.conf]"
subscribes :restart, "template[/etc/supybot/git.conf]"
subscribes :restart, "template[/etc/supybot/userdata.conf]"
subscribes :restart, "template[/etc/supybot/users.conf]"
subscribes :restart, "git[/usr/local/lib/supybot/plugins/Git]"
- subscribes :restart, "template[/etc/init.d/supybot]"
+ subscribes :restart, "systemd_service[supybot]"
end
+++ /dev/null
-#!/bin/bash
-
-# DO NOT EDIT - This file is being maintained by Chef
-
-start() {
- start-stop-daemon --start --chuid supybot --background --make-pidfile --pidfile /var/run/supybot.pid --exec /usr/bin/supybot -- /etc/supybot/supybot.conf
-}
-
-stop() {
- start-stop-daemon --stop --retry TERM/15/KILL/30 --pidfile /var/run/supybot.pid
-}
-
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- stop || exit $?
- start
- ;;
-esac