blob: a492747a479ea77ea6ca1869098a2ab29e918b8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/openrc-run
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="Dendrite"
description=""
command=/usr/bin/dendrite
command_args="${dendrite_args}"
command_background="true"
command_user="${dendrite_user}:${dendrite_group}"
pidfile="/run/${RC_SVCNAME}.pid"
depend() {
need net
}
|