
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
13 lines
256 B
Bash
Executable File
13 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Shell script to start the zkt-ls command
|
|
# out of the example directory
|
|
#
|
|
|
|
if test ! -f dnssec.conf
|
|
then
|
|
echo Please start this skript out of the flat or hierarchical sub directory
|
|
exit 1
|
|
fi
|
|
ZKT_CONFFILE=`pwd`/dnssec.conf ../../zkt-ls "$@"
|