18 lines
380 B
Plaintext
18 lines
380 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2026 Shin'ya Minazuki
|
|
|
|
: ${MATTERBRIDGE_USER="matterbridge"}
|
|
: ${MATTERBRIDGE_GROUP="matterbridge"}
|
|
|
|
supervisor="supervise-daemon"
|
|
|
|
command="/usr/bin/${RC_SVCNAME}"
|
|
command_args="-conf /etc/matterbridge.toml"
|
|
command_background="true"
|
|
command_user="${MATTERBRIDGE_USER}:${MATTERBRIDGE_GROUP}"
|
|
pidfile="/run/matterbridge.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|