Regularly update nameservers' Linux packages
Some checks failed
Queries per Second shields.io badge / update-qps-gist (push) Has been cancelled
Nameservers / check-dns (push) Has been cancelled
CI Tests / build (push) Has been cancelled

I'd like to keep the nameservers fresh, and this commit incorporates
`apt-get update` in the procedure to update the sslip.io nameserver
because I'll be rebooting the servers anyway (rebooting is key because
I'd like the updated kernel to match the running kernel).
This commit is contained in:
Brian Cunnie
2025-08-17 07:56:21 -07:00
parent 9ef8cf46aa
commit ba6ca8b47b

View File

@@ -84,6 +84,11 @@ git ci -vm"$GIT_MESSAGE"
git tag $VERSION
git push
git push --tags
for HOST in {ns-do-sg,ns-gce,ns-hetzner,ns-ovh}.sslip.io; do
ssh $HOST sudo apt-get update
ssh $HOST sudo apt-get upgrade -y
ssh $HOST sudo apt-get autoremove -y
done
scp bin/sslip.io-dns-server-linux-amd64 ns-do-sg:
scp bin/sslip.io-dns-server-linux-amd64 ns-gce:
scp bin/sslip.io-dns-server-linux-amd64 ns-hetzner: