mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 07:44:59 +02:00
18 lines
428 B
Bash
Executable file
18 lines
428 B
Bash
Executable file
#!/sbin/openrc-run
|
|
|
|
name="Drawpile Server"
|
|
description="Collaborative drawing server"
|
|
command="/usr/bin/drawpile-srv"
|
|
command_args="--database /var/lib/drawpile/guiserver.db
|
|
--sessions /var/lib/drawpile/sessions
|
|
--templates /etc/drawpile/templates
|
|
--extauth https://drawpile.net/api/ext-auth/
|
|
"
|
|
pidfile="/run/drawpile.pid"
|
|
command_background=true
|
|
command_user=drawpile:drawpile
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|