6.2.0 #50

Merged
Ark74 merged 12 commits from unstable into master 2021-05-16 01:31:56 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3a649887c5 - Show all commits

View File

@ -78,7 +78,7 @@ do
fi fi
done done
#Simple DNS test #Simple DNS test
if [ "$PUBLIC_IP" = "$(dig -4 +short $NC_DOMAIN)" ]; then if [ "$PUBLIC_IP" = "$(dig -4 +short $NC_DOMAIN|awk -v RS='([0-9]+\\.){3}[0-9]+' 'RT{print RT}')" ]; then
echo "Server public IP & DNS record for $NC_DOMAIN seems to match, continuing... echo "Server public IP & DNS record for $NC_DOMAIN seems to match, continuing...
" "
else else

View File

@ -284,7 +284,7 @@ if [ "$LE_SSL" = "yes" ]; then
fi fi
done done
#Simple DNS test #Simple DNS test
if [ "$PUBLIC_IP" = "$(dig -4 +short $JITSI_DOMAIN)" ]; then if [ "$PUBLIC_IP" = "$(dig -4 +short $JITSI_DOMAIN||awk -v RS='([0-9]+\\.){3}[0-9]+' 'RT{print RT}')" ]; then
echo "Server public IP & DNS record for $JITSI_DOMAIN seems to match, continuing... echo "Server public IP & DNS record for $JITSI_DOMAIN seems to match, continuing...
" "
else else