mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 20:55:19 +03:00
12 lines
255 B
Text
12 lines
255 B
Text
#!/sbin/openrc-run
|
|
|
|
description="Secure server providing multi-user, multi-client access to task data"
|
|
command=/usr/bin/taskd
|
|
command_args="server --data /var/lib/taskd"
|
|
|
|
start_stop_daemon_args="--user taskd:taskd"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|