mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
eb345175df
port and not include the one from the deprecated bind97 port, which is to be removed.
14 lines
257 B
Bash
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
|