mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
#!/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
|
|
}
|