Check that jitsi is installed

This commit is contained in:
Bob Mottram 2016-11-11 09:09:34 +00:00
parent 32e6c00913
commit 7e7e463ea0
1 changed files with 12 additions and 10 deletions

View File

@ -654,16 +654,18 @@ function update_default_domain {
echo $'Updating default domain'
if [[ $ONION_ONLY == 'no' ]]; then
if [ -d /etc/prosody ]; then
read_config_param "JITSI_DOMAIN_NAME"
if [ ${#JITSI_DOMAIN_NAME} -gt 0 ]; then
if [ -f /etc/ssl/private/${JITSI_DOMAIN_NAME}.key ]; then
cp /etc/ssl/private/${JITSI_DOMAIN_NAME}.key /etc/prosody/certs/${JITSI_DOMAIN_NAME}.key
fi
if [ -f /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt ]; then
cp /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt /etc/prosody/certs/${JITSI_DOMAIN_NAME}.pem
fi
if [ -f /etc/ssl/certs/${JITSI_DOMAIN_NAME}.pem ]; then
cp /etc/ssl/certs/${JITSI_DOMAIN_NAME}.pem /etc/prosody/certs/${JITSI_DOMAIN_NAME}.pem
if [ -d /etc/jitsi ]; then
read_config_param "JITSI_DOMAIN_NAME"
if [ ${#JITSI_DOMAIN_NAME} -gt 0 ]; then
if [ -f /etc/ssl/private/${JITSI_DOMAIN_NAME}.key ]; then
cp /etc/ssl/private/${JITSI_DOMAIN_NAME}.key /etc/prosody/certs/${JITSI_DOMAIN_NAME}.key
fi
if [ -f /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt ]; then
cp /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt /etc/prosody/certs/${JITSI_DOMAIN_NAME}.pem
fi
if [ -f /etc/ssl/certs/${JITSI_DOMAIN_NAME}.pem ]; then
cp /etc/ssl/certs/${JITSI_DOMAIN_NAME}.pem /etc/prosody/certs/${JITSI_DOMAIN_NAME}.pem
fi
fi
fi