Compare commits

...

3 commits

Author SHA1 Message Date
f
ed316dd7fc use syslog
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-06-05 21:53:45 -03:00
f
cc51232cc3 Merge branch 'antifascista' of ssh://gitea.nulo.in:420/Sutty/containers-skel into antifascista 2022-06-05 21:52:50 -03:00
f
c90ba65374 alpine 3.16 2022-05-29 21:05:05 -03:00
2 changed files with 2 additions and 3 deletions

View file

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

View file

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