[packages] nufw: don't call autogen.sh
[openwrt/svn-archive/archive.git] / net / djbdns / files / dnsroots-update
1 #!/bin/sh
2
3 # This is a script that outputs the current list of active DNS
4 # root servers. To run, it requires an active internet connection
5 # and a working resolving DNS server. It also requires that the
6 # djbdns dnstools be installed, or at least the tools dnsqr and
7 # dnsip.
8
9 dnsqr ns .|grep answer|cut -f 5 -d " "|sort|while read server; do dnsip $server; done