2014-08-10 19:29:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# postinst script for jitsi-meet
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# summary of how this script can be called:
|
|
|
|
# * <postinst> `configure' <most-recently-configured-version>
|
|
|
|
# * <old-postinst> `abort-upgrade' <new version>
|
|
|
|
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
|
|
# <new-version>
|
|
|
|
# * <postinst> `abort-remove'
|
|
|
|
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
|
|
# <failed-install-package> <version> `removing'
|
|
|
|
# <conflicting-package> <version>
|
|
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
|
|
# the debian-policy package
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
|
|
|
|
2014-10-23 10:38:54 +00:00
|
|
|
. /etc/jitsi/videobridge/config
|
2014-09-04 07:45:35 +00:00
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
# loading debconf
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
|
2015-03-16 15:54:36 +00:00
|
|
|
# detect dpkg-reconfigure, just delete old links
|
|
|
|
db_get jitsi-meet/jvb-hostname
|
|
|
|
JVB_HOSTNAME_OLD=$RET
|
|
|
|
if [ -n "$RET" ] && [ ! "$JVB_HOSTNAME_OLD" = "$JVB_HOSTNAME" ] ; then
|
|
|
|
rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME_OLD.conf
|
|
|
|
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
|
|
|
fi
|
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
# stores the hostname so we will reuse it later, like in purge
|
|
|
|
db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME
|
|
|
|
|
2014-09-04 07:45:35 +00:00
|
|
|
# nginx conf
|
2014-08-28 07:29:07 +00:00
|
|
|
if [ ! -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf ]; then
|
|
|
|
cp /usr/share/doc/jitsi-meet/jitsi-meet.example /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
if [ ! -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf ]; then
|
|
|
|
ln -s /etc/nginx/sites-available/$JVB_HOSTNAME.conf /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf
|
|
|
|
fi
|
|
|
|
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
2014-08-10 19:29:48 +00:00
|
|
|
fi
|
2014-08-28 07:29:07 +00:00
|
|
|
|
2014-11-17 09:43:57 +00:00
|
|
|
# SSL for nginx
|
|
|
|
db_get jitsi-meet/cert-choice
|
|
|
|
CERT_CHOICE="$RET"
|
|
|
|
if [ "$CERT_CHOICE" = 'A certificate is available and the files are uploaded on the server' ]; then
|
|
|
|
db_set jitsi-meet/cert-path-key "/etc/ssl/$JVB_HOSTNAME.key"
|
|
|
|
db_input critical jitsi-meet/cert-path-key || true
|
|
|
|
db_go
|
|
|
|
db_get jitsi-meet/cert-path-key
|
|
|
|
CERT_KEY="$RET"
|
|
|
|
db_set jitsi-meet/cert-path-crt "/etc/ssl/$JVB_HOSTNAME.crt"
|
|
|
|
db_input critical jitsi-meet/cert-path-crt || true
|
|
|
|
db_go
|
|
|
|
db_get jitsi-meet/cert-path-crt
|
|
|
|
CERT_CRT="$RET"
|
|
|
|
# replace self-signed certificate paths with user provided ones
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY | sed 's/\./\\\./g')
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY_ESC | sed 's/\//\\\//g')
|
|
|
|
sed -i "s/ssl_certificate_key\ \/var\/lib\/prosody\/.*key/ssl_certificate_key\ $CERT_KEY_ESC/g" \
|
|
|
|
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT | sed 's/\./\\\./g')
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT_ESC | sed 's/\//\\\//g')
|
|
|
|
sed -i "s/ssl_certificate\ \/var\/lib\/prosody\/.*crt/ssl_certificate\ $CERT_CRT_ESC/g" \
|
|
|
|
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
2014-09-04 07:45:35 +00:00
|
|
|
fi
|
2014-08-29 12:28:51 +00:00
|
|
|
|
2014-08-10 19:29:48 +00:00
|
|
|
# jitsi meet
|
2014-10-22 15:22:18 +00:00
|
|
|
JITSI_MEET_CONFIG="/etc/jitsi/meet/$JVB_HOSTNAME-config.js"
|
|
|
|
if [ ! -f $JITSI_MEET_CONFIG ]; then
|
|
|
|
cp /usr/share/doc/jitsi-meet/config.js $JITSI_MEET_CONFIG
|
|
|
|
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" $JITSI_MEET_CONFIG
|
|
|
|
fi
|
2014-08-10 19:29:48 +00:00
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
# and we're done with debconf
|
|
|
|
db_stop
|
|
|
|
|
2014-10-22 15:22:18 +00:00
|
|
|
invoke-rc.d nginx reload
|
2014-08-10 19:29:48 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
exit 0
|