2014-09-04 09:00:12 +00:00
|
|
|
#!/bin/bash
|
2014-08-10 19:29:48 +00:00
|
|
|
# postinst script for jitsi-meet-prosody
|
|
|
|
#
|
|
|
|
# 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-11-17 10:16:34 +00:00
|
|
|
# loading debconf
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
|
2016-11-21 21:16:37 +00:00
|
|
|
# try to get host from jitsi-videobridge
|
|
|
|
db_get jitsi-videobridge/jvb-hostname
|
|
|
|
if [ -z "$RET" ] ; then
|
|
|
|
# server hostname
|
|
|
|
db_set jitsi-videobridge/jvb-hostname "localhost"
|
|
|
|
db_input critical jitsi-videobridge/jvb-hostname || true
|
|
|
|
db_go
|
|
|
|
fi
|
|
|
|
JVB_HOSTNAME="$RET"
|
|
|
|
|
|
|
|
db_get jitsi-videobridge/jvbsecret
|
|
|
|
if [ -z "$RET" ] ; then
|
|
|
|
db_input critical jitsi-videobridge/jvbsecret || true
|
|
|
|
db_go
|
|
|
|
fi
|
|
|
|
JVB_SECRET="$RET"
|
|
|
|
|
|
|
|
db_get jicofo/jicofo-authuser
|
|
|
|
if [ -z "$RET" ] ; then
|
|
|
|
db_input critical jicofo/jicofo-authuser || true
|
|
|
|
db_go
|
|
|
|
fi
|
|
|
|
JICOFO_AUTH_USER="$RET"
|
|
|
|
|
|
|
|
db_get jicofo/jicofo-authpassword
|
|
|
|
if [ -z "$RET" ] ; then
|
2018-04-30 22:19:30 +00:00
|
|
|
# if password is missing generate it, and store it
|
|
|
|
JICOFO_AUTH_PASSWORD=`head -c 8 /dev/urandom | tr '\0-\377' 'a-zA-Z0-9a-zA-Z0-9a-zA-Z0-9a-zA-Z0-9@@@@####'`
|
|
|
|
db_set jicofo/jicofo-authpassword "$JICOFO_AUTH_PASSWORD"
|
|
|
|
else
|
|
|
|
JICOFO_AUTH_PASSWORD="$RET"
|
2016-11-21 21:16:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
db_get jicofo/jicofosecret
|
|
|
|
if [ -z "$RET" ] ; then
|
2018-04-30 22:19:30 +00:00
|
|
|
# if secret is missing generate it, and store it
|
|
|
|
JICOFO_SECRET=`head -c 8 /dev/urandom | tr '\0-\377' 'a-zA-Z0-9a-zA-Z0-9a-zA-Z0-9a-zA-Z0-9@@@@####'`
|
|
|
|
db_set jicofo/jicofosecret "$JICOFO_SECRET"
|
|
|
|
else
|
|
|
|
JICOFO_SECRET="$RET"
|
2016-11-21 21:16:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
JICOFO_AUTH_DOMAIN="auth.$JVB_HOSTNAME"
|
|
|
|
|
2015-03-16 15:54:36 +00:00
|
|
|
# detect dpkg-reconfigure, just delete old links
|
2015-03-26 11:19:50 +00:00
|
|
|
db_get jitsi-meet-prosody/jvb-hostname
|
2015-03-16 15:54:36 +00:00
|
|
|
JVB_HOSTNAME_OLD=$RET
|
|
|
|
if [ -n "$RET" ] && [ ! "$JVB_HOSTNAME_OLD" = "$JVB_HOSTNAME" ] ; then
|
|
|
|
rm -f /etc/prosody/conf.d/$JVB_HOSTNAME_OLD.cfg.lua
|
|
|
|
rm -f /etc/prosody/certs/$JVB_HOSTNAME_OLD.key
|
|
|
|
rm -f /etc/prosody/certs/$JVB_HOSTNAME_OLD.crt
|
|
|
|
fi
|
|
|
|
|
2014-11-17 10:16:34 +00:00
|
|
|
# stores the hostname so we will reuse it later, like in purge
|
2016-11-21 21:16:37 +00:00
|
|
|
db_set jitsi-meet-prosody/jvb-hostname "$JVB_HOSTNAME"
|
2014-11-17 10:16:34 +00:00
|
|
|
|
|
|
|
# and we're done with debconf
|
|
|
|
db_stop
|
|
|
|
|
2014-08-29 09:53:24 +00:00
|
|
|
PROSODY_CONFIG_PRESENT="true"
|
2014-12-05 13:04:15 +00:00
|
|
|
PROSODY_CREATE_JICOFO_USER="false"
|
2014-10-22 14:23:41 +00:00
|
|
|
PROSODY_HOST_CONFIG="/etc/prosody/conf.avail/$JVB_HOSTNAME.cfg.lua"
|
2014-12-05 13:04:15 +00:00
|
|
|
PROSODY_CONFIG_OLD="/etc/prosody/prosody.cfg.lua"
|
2014-09-04 09:00:12 +00:00
|
|
|
# if there is no prosody config extract our template
|
2014-10-22 14:23:41 +00:00
|
|
|
# check for config in conf.avail or check whether it wasn't already configured in main config
|
2014-12-05 13:04:15 +00:00
|
|
|
if [ ! -f $PROSODY_HOST_CONFIG ] && ! grep -q "VirtualHost \"$JVB_HOSTNAME\"" $PROSODY_CONFIG_OLD; then
|
2014-08-29 09:53:24 +00:00
|
|
|
PROSODY_CONFIG_PRESENT="false"
|
2014-12-16 15:00:46 +00:00
|
|
|
mkdir -p /etc/prosody/conf.avail/
|
2018-04-30 22:19:30 +00:00
|
|
|
mkdir -p /etc/prosody/conf.d/
|
2014-10-22 14:23:41 +00:00
|
|
|
cp /usr/share/doc/jitsi-meet-prosody/prosody.cfg.lua-jvb.example $PROSODY_HOST_CONFIG
|
|
|
|
sed -i "s/jitmeet.example.com/$JVB_HOSTNAME/g" $PROSODY_HOST_CONFIG
|
|
|
|
sed -i "s/jitmeetSecret/$JVB_SECRET/g" $PROSODY_HOST_CONFIG
|
2014-12-02 19:11:54 +00:00
|
|
|
sed -i "s/focusSecret/$JICOFO_SECRET/g" $PROSODY_HOST_CONFIG
|
|
|
|
sed -i "s/focusUser/$JICOFO_AUTH_USER/g" $PROSODY_HOST_CONFIG
|
2014-10-22 14:23:41 +00:00
|
|
|
if [ ! -f /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua ]; then
|
|
|
|
ln -s $PROSODY_HOST_CONFIG /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua
|
2014-08-29 09:53:24 +00:00
|
|
|
fi
|
2014-12-05 13:04:15 +00:00
|
|
|
PROSODY_CREATE_JICOFO_USER="true"
|
2014-12-17 07:39:12 +00:00
|
|
|
# on some distributions main prosody config doesn't include configs
|
|
|
|
# from conf.d folder enable it as this where we put our config by default
|
|
|
|
if ! grep -q "Include \"conf\.d\/\*\.cfg.lua\"" $PROSODY_CONFIG_OLD; then
|
|
|
|
echo -e "\nInclude \"conf.d/*.cfg.lua\"" >> $PROSODY_CONFIG_OLD
|
|
|
|
fi
|
2014-12-02 19:11:54 +00:00
|
|
|
fi
|
2014-12-05 13:04:15 +00:00
|
|
|
|
|
|
|
if [ "$PROSODY_CREATE_JICOFO_USER" = "true" ]; then
|
2014-12-02 19:11:54 +00:00
|
|
|
# create 'focus@auth.domain' prosody user
|
|
|
|
prosodyctl register $JICOFO_AUTH_USER $JICOFO_AUTH_DOMAIN $JICOFO_AUTH_PASSWORD
|
2014-12-04 11:40:13 +00:00
|
|
|
# trigger a restart
|
|
|
|
PROSODY_CONFIG_PRESENT="false"
|
2014-08-29 09:53:24 +00:00
|
|
|
fi
|
|
|
|
|
2014-08-10 19:29:48 +00:00
|
|
|
if [ ! -f /var/lib/prosody/$JVB_HOSTNAME.crt ]; then
|
2017-12-05 05:27:28 +00:00
|
|
|
# prosodyctl takes care for the permissions
|
2017-12-05 20:59:26 +00:00
|
|
|
# echo for using all default values
|
|
|
|
echo | prosodyctl cert generate $JVB_HOSTNAME
|
2017-12-05 05:27:28 +00:00
|
|
|
|
2017-10-06 21:51:30 +00:00
|
|
|
ln -sf /var/lib/prosody/$JVB_HOSTNAME.key /etc/prosody/certs/$JVB_HOSTNAME.key
|
|
|
|
ln -sf /var/lib/prosody/$JVB_HOSTNAME.crt /etc/prosody/certs/$JVB_HOSTNAME.crt
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f /var/lib/prosody/$JICOFO_AUTH_DOMAIN.crt ]; then
|
2017-12-05 05:27:28 +00:00
|
|
|
# prosodyctl takes care for the permissions
|
2017-12-05 20:59:26 +00:00
|
|
|
# echo for using all default values
|
|
|
|
echo | prosodyctl cert generate $JICOFO_AUTH_DOMAIN
|
2017-12-05 05:27:28 +00:00
|
|
|
|
2018-03-11 10:35:17 +00:00
|
|
|
AUTH_KEY_FILE="/etc/prosody/certs/$JICOFO_AUTH_DOMAIN.key"
|
|
|
|
AUTH_CRT_FILE="/etc/prosody/certs/$JICOFO_AUTH_DOMAIN.crt"
|
|
|
|
|
|
|
|
ln -sf /var/lib/prosody/$JICOFO_AUTH_DOMAIN.key $AUTH_KEY_FILE
|
|
|
|
ln -sf /var/lib/prosody/$JICOFO_AUTH_DOMAIN.crt $AUTH_CRT_FILE
|
2017-10-06 21:51:30 +00:00
|
|
|
ln -sf /var/lib/prosody/$JICOFO_AUTH_DOMAIN.crt /usr/local/share/ca-certificates/$JICOFO_AUTH_DOMAIN.crt
|
|
|
|
|
2018-04-30 22:19:30 +00:00
|
|
|
# we need to force updating certificates, in some cases java trust
|
|
|
|
# store not get re-generated with latest changes
|
|
|
|
update-ca-certificates -f
|
2017-10-06 21:51:30 +00:00
|
|
|
|
2017-10-13 13:43:00 +00:00
|
|
|
# don't fail on systems with custom config ($PROSODY_HOST_CONFIG is missing)
|
|
|
|
if [ -f $PROSODY_HOST_CONFIG ]; then
|
|
|
|
# now let's add the ssl cert for the auth. domain (we use # as a sed delimiter cause filepaths are confused with default / delimiter)
|
|
|
|
sed -i "s#VirtualHost \"$JICOFO_AUTH_DOMAIN\"#VirtualHost \"$JICOFO_AUTH_DOMAIN\"\n ssl = {\n key = \"$AUTH_KEY_FILE\";\n certificate = \"$AUTH_CRT_FILE\";\n \}#g" $PROSODY_HOST_CONFIG
|
|
|
|
fi
|
2017-10-06 21:51:30 +00:00
|
|
|
|
|
|
|
# trigger a restart
|
|
|
|
PROSODY_CONFIG_PRESENT="false"
|
2014-08-10 19:29:48 +00:00
|
|
|
fi
|
2014-09-17 13:52:00 +00:00
|
|
|
|
2014-10-22 14:23:41 +00:00
|
|
|
if [ "$PROSODY_CONFIG_PRESENT" = "false" ]; then
|
2014-09-17 13:52:00 +00:00
|
|
|
invoke-rc.d prosody restart
|
|
|
|
fi
|
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
|