Compare commits

..

No commits in common. "ed316dd7fca53ca9d98a5a6fee1cfe3eadcba6e8" and "7334715e6212f79ea73b6bea3fa16d344f9c3243" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View file

@ -18,4 +18,4 @@ pipeline:
event: push
matrix:
ALPINE_VERSION:
- 3.16.0
- 3.15.4

View file

@ -2,12 +2,13 @@
set -e
pid=/run/matterbridge.pid
log=/tmp/matterbridge.log
cnf=/etc/matterbridge/matterbridge.toml
srv=/srv/matterbridge
case $1 in
start)
daemonize -p ${pid} -l ${pid} -u matterbridge -c ${srv} /usr/local/bin/syslogize matterbridge -conf ${cnf}
daemonize -a -e ${log} -o ${log} -p ${pid} -l ${pid} -u matterbridge -c ${srv} /usr/bin/matterbridge -conf ${cnf}
;;
stop)
test -f ${pid} || exit 0