Remove unused variable along with DNS tooling

This commit is contained in:
Kim Alvefur 2025-07-18 13:39:46 +02:00
parent 82c82f3fc6
commit c79fbcbef1
2 changed files with 0 additions and 10 deletions

View File

@ -6,12 +6,6 @@
state: present
install_recommends: yes
- name: "Install dnsutils package"
apt:
name: dnsutils
state: present
install_recommends: no
- name: "Disable coturn service"
service:
name: coturn

View File

@ -16,10 +16,6 @@ if [ -z "$SNIKKET_SMTP_URL" ]; then
SNIKKET_SMTP_URL="smtp://localhost:1025/;no-tls"
fi
if [ -z "$SNIKKET_EXTERNAL_IP" ]; then
SNIKKET_EXTERNAL_IP="$(dig +short $SNIKKET_DOMAIN_ASCII)"
fi
echo "$SNIKKET_SMTP_URL" | smtp-url-to-msmtp > /etc/msmtprc
echo "from snikket@$SNIKKET_DOMAIN_ASCII" >> /etc/msmtprc