
Also known as ISC bind. This import adds utilities such as host(1), dig(1), and nslookup(1), as well as many other tools and libraries. Change-Id: I035ca46e64f1965d57019e773f4ff0ef035e4aa3
14 lines
185 B
Bash
14 lines
185 B
Bash
|
|
{
|
|
find . -name "dnskey.db"
|
|
find . -name "dsset-*"
|
|
find . -name "keyset-*"
|
|
find . -name "K*"
|
|
} | xargs rm
|
|
|
|
|
|
for file in `find . -name "zone.db.signed"`
|
|
do
|
|
cp /dev/null $file
|
|
done
|