1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/dns/bind96/pkg-install
Erwin Lansing eb345175df Make pkg-message and pkg-install a local file to the bind96
port and not include the one from the deprecated bind97 port, which is
to be removed.
2013-04-23 08:33:33 +00:00

14 lines
257 B
Bash

#!/bin/sh
[ "$2" = 'POST-INSTALL' ] || exit 0
/bin/mkdir -p /var/named${PKG_PREFIX}/etc
for DIR in ${PKG_PREFIX}/etc /var/named${PKG_PREFIX}/etc; do
for FILE in named.conf rndc.key; do
/bin/ln -sf /etc/namedb/${FILE} ${DIR}/${FILE}
done
done
exit 0