mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 02:02:08 +01:00
8 lines
179 B
Bash
8 lines
179 B
Bash
#!/bin/sh
|
|
|
|
# Generate key required for reload to work -> creates /etc/bind/rndc.key
|
|
if ! [ -f /etc/bind/rndc.key ]; then
|
|
rndc-confgen -a
|
|
chown named:named /etc/bind/rndc.key
|
|
fi
|