Added instructions for obtaining root.hints to post_install script
[mirrors/ArchLinux-Packages.git] / dnssec-tools / dnssec-tools.install
... / ...
CommitLineData
1# arg 1: the new package version
2post_install() {
3 echo 'Generating default config file if not exists...'
4 echo $(while echo; do true; done 2>/dev/null | { dtinitconf >/dev/null; } 2>&1)
5 touch /etc/dnssec-tools/dnsval.conf.{head,tail}
6 echo 'Please run following command as root in case of resolver problems:'
7 echo -e '\tdig @e.root-servers.net . ns > /etc/dnssec-tools/root.hints'
8 return 0
9}
10
11# arg 1: the new package version
12# arg 2: the old package version
13post_upgrade() {
14 post_install $1
15}
This page took 0.082648 seconds and 4 git commands to generate.