diff options
author | vaartis <vaartis@cock.li> | 2018-08-22 20:27:15 +0000 |
---|---|---|
committer | Ekaterina Vaartis <vaartis@cock.li> | 2018-08-23 19:34:11 +0300 |
commit | 9c5ca9e15e82cbfc95d6ef6e7218919872c69ec5 (patch) | |
tree | 9926b16fc2d2ed684344a879a2fe59ac2843ae6d /installation/init.d | |
parent | 643f373514081864814930807432dc0740694c69 (diff) | |
download | pleroma-9c5ca9e15e82cbfc95d6ef6e7218919872c69ec5.tar.gz pleroma-9c5ca9e15e82cbfc95d6ef6e7218919872c69ec5.zip |
Add an OpenRC service
Diffstat (limited to 'installation/init.d')
-rwxr-xr-x | installation/init.d/pleroma | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/installation/init.d/pleroma b/installation/init.d/pleroma new file mode 100755 index 000000000..9582d65d4 --- /dev/null +++ b/installation/init.d/pleroma @@ -0,0 +1,21 @@ +#!/sbin/openrc-run + +# Requires OpenRC >= 0.35 +directory=~pleroma/pleroma + +command=/usr/bin/mix +command_args="phx.server" +command_user=pleroma:pleroma +command_background=1 + +export PORT=4000 +export MIX_ENV=prod + +# Ask process to terminate within 30 seconds, otherwise kill it +retry="SIGTERM/30 SIGKILL/5" + +pidfile="/var/run/pleroma.pid" + +depend() { + need nginx postgresql +}
\ No newline at end of file |