Proxmox/misc/technitiumdns-update.sh

77 lines
1.7 KiB
Bash
Raw Normal View History

2022-03-18 12:30:18 +01:00
#!/bin/sh
set -e
dotnetDir="/opt/dotnet"
dnsDir="/etc/dns"
dnsTar="/etc/dns/DnsServerPortable.tar.gz"
dnsUrl="https://download.technitium.com/dns/DnsServerPortable.tar.gz"
mkdir -p $dnsDir
installLog="$dnsDir/install.log"
echo "" > $installLog
echo ""
echo "==============================="
echo "Technitium DNS Server Update"
echo "==============================="
2022-03-28 23:00:13 +02:00
if dotnet --list-runtimes 2> /dev/null | grep -q "Microsoft.NETCore.App 6.0.";
2022-03-18 12:30:18 +01:00
then
dotnetFound="yes"
else
dotnetFound="no"
fi
if [ -d $dotnetDir ]
then
dotnetUpdate="yes"
2022-03-28 23:00:13 +02:00
echo "Updating .NET 6 Runtime..."
2022-03-18 12:30:18 +01:00
fi
2022-03-28 23:00:13 +02:00
curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin -c 6.0 --runtime dotnet --no-path --install-dir $dotnetDir --verbose >> $installLog 2>&1
2022-03-18 12:30:18 +01:00
if [ ! -f "/usr/bin/dotnet" ]
then
ln -s $dotnetDir/dotnet /usr/bin >> $installLog 2>&1
fi
2022-03-28 23:00:13 +02:00
if dotnet --list-runtimes 2> /dev/null | grep -q "Microsoft.NETCore.App 6.0.";
2022-03-18 12:30:18 +01:00
then
if [ "$dotnetUpdate" = "yes" ]
then
2022-03-28 23:00:13 +02:00
echo ".NET 6 Runtime was updated successfully!"
2022-03-18 12:30:18 +01:00
fi
else
2022-03-28 23:00:13 +02:00
echo "Failed to update .NET 6 Runtime. Please try again."
2022-03-18 12:30:18 +01:00
exit 1
fi
if curl -o $dnsTar --fail $dnsUrl >> $installLog 2>&1
then
if [ -d $dnsDir ]
then
echo "Updating Technitium DNS Server..."
fi
tar -zxf $dnsTar -C $dnsDir >> $installLog 2>&1
if [ "$(ps --no-headers -o comm 1 | tr -d '\n')" = "systemd" ]
then
if [ -f "/etc/systemd/system/dns.service" ]
then
echo "Restarting systemd service..."
systemctl restart dns.service >> $installLog 2>&1
fi
echo ""
echo "Technitium DNS Server was updated successfully!"
else
echo ""
echo "Failed to update Technitium DNS Server: systemd was not detected."
exit 1
fi
else
echo ""
echo "Failed to download Technitium DNS Server from: $dnsUrl"
exit 1
fi