mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-08 21:20:27 +00:00
20 lines
513 B
Plaintext
Executable File
20 lines
513 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# Copyright 2021-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command=/usr/bin/matterbridge
|
|
command_args="-conf ${MATTERBRIDGE_CONF:-/etc/matterbridge/bridge.toml} ${MATTERBRIDGE_ARGS}"
|
|
command_user="matterbridge:matterbridge"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
command_background=1
|
|
output_log="/var/log/${RC_SVCNAME}.log"
|
|
error_log="${output_log}"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -f "${output_log}" -o "${command_user}" || return 1
|
|
}
|