From: rinpatch Date: Sat, 22 Jun 2019 10:24:33 +0000 (+0300) Subject: Add an OpenRC service for OTP releases X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=bb40c33dd65aaeafaf3b74f4557deb75b0da8e93;p=akkoma Add an OpenRC service for OTP releases --- diff --git a/rel/files/installation/init.d/pleroma b/rel/files/installation/init.d/pleroma new file mode 100755 index 000000000..de007c5e3 --- /dev/null +++ b/rel/files/installation/init.d/pleroma @@ -0,0 +1,18 @@ +#!/sbin/openrc-run + +# Requires OpenRC >= 0.35 +directory=/opt/pleroma + +command=/opt/pleroma/bin/pleroma +command_args="start" +command_user=pleroma +command_background=1 + +# Ask process to terminate within 30 seconds, otherwise kill it +retry="SIGTERM/30/SIGKILL/5" + +pidfile="/var/run/pleroma.pid" + +depend() { + need nginx postgresql +}