mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
114 lines
2.4 KiB
Bash
114 lines
2.4 KiB
Bash
#! /bin/sh
|
|
#
|
|
# INIT script for Jitsi Videobridge
|
|
# Version: 1.0 01-May-2014 yasen@bluejimp.com
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: jitsi-videobridge
|
|
# Required-Start: $local_fs $remote_fs
|
|
# Required-Stop: $local_fs $remote_fs
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: Jitsi Videobridge
|
|
# Description: WebRTC compatible Selective Forwarding Unit (SFU)
|
|
### END INIT INFO
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
# Include videobridge defaults if available
|
|
if [ -f /etc/default/jitsi-videobridge ]; then
|
|
. /etc/default/jitsi-videobridge
|
|
fi
|
|
|
|
PATH=/usr/lib/jvm/java-7-openjdk-amd64/jre/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
|
DAEMON=/opt/yunohost/jitsi-videobridge/jvb.sh
|
|
NAME=jvb
|
|
USER=jvb
|
|
PIDFILE=/var/run/jitsi-videobridge.pid
|
|
LOGFILE=/var/log/jitsi/jvb.log
|
|
DESC=jitsi-videobridge
|
|
if [ ! $JVB_HOST ]; then
|
|
JVB_HOST=localhost
|
|
fi
|
|
DAEMON_OPTS=" --host=$JVB_HOST --domain=$JVB_HOSTNAME --port=$JVB_PORT --secret=$JVB_SECRET $JVB_OPTS"
|
|
|
|
test -x $DAEMON || exit 0
|
|
|
|
set -e
|
|
|
|
killParentPid() {
|
|
PARENT_PID=$(ps -o pid --no-headers --ppid $1 || true)
|
|
if [ $PARENT_PID ]; then
|
|
kill $PARENT_PID
|
|
fi
|
|
}
|
|
|
|
stop() {
|
|
if [ -f $PIDFILE ]; then
|
|
PID=$(cat $PIDFILE)
|
|
fi
|
|
echo -n "Stopping $DESC: "
|
|
if [ $PID ]; then
|
|
killParentPid $PID
|
|
rm $PIDFILE || true
|
|
echo "$NAME stopped."
|
|
elif [ $(ps -C jvb.sh --no-headers -o pid) ]; then
|
|
kill $(ps -o pid --no-headers --ppid $(ps -C jvb.sh --no-headers -o pid))
|
|
rm $PIDFILE || true
|
|
echo "$NAME stopped."
|
|
else
|
|
echo "$NAME doesn't seem to be running."
|
|
fi
|
|
}
|
|
|
|
start() {
|
|
if [ -f $PIDFILE ]; then
|
|
echo "$DESC seems to be already running, we found pidfile $PIDFILE."
|
|
exit 1
|
|
fi
|
|
echo -n "Starting $DESC: "
|
|
start-stop-daemon --start --quiet --background --chuid $USER --make-pidfile --pidfile $PIDFILE \
|
|
--exec /bin/bash -- -c "exec $DAEMON $DAEMON_OPTS < /dev/null >> $LOGFILE 2>&1"
|
|
echo "$NAME started."
|
|
}
|
|
|
|
reload() {
|
|
echo 'Not yet implemented.'
|
|
}
|
|
|
|
status() {
|
|
echo 'Not yet implemented.'
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
reload)
|
|
#reload
|
|
stop
|
|
start
|
|
;;
|
|
force-reload)
|
|
#reload
|
|
stop
|
|
start
|
|
;;
|
|
status)
|
|
status
|
|
;;
|
|
*)
|
|
N=/etc/init.d/$NAME
|
|
echo "Usage: $N {start|stop|restart|reload|status}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|