post_install() {
  systemd-sysusers bind.conf
  systemd-tmpfiles --create bind.conf

  # create an rndc.key if it doesn't already exist
  if [[ ! -s etc/rndc.key ]]; then
    rndc-confgen -r /dev/urandom -b 256 | head -n 5 >>etc/rndc.key
    chown root:named etc/rndc.key
    chmod 640 etc/rndc.key
  fi
}

# vim:set ts=2 sw=2 et:
