| 1234567891011121314151617181920 | #!/bin/bashecho "Setting console permissions..."chown root:tty /dev/consolechmod g+rw /dev/consoleecho "Receiving anchor key..."/usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.keyecho "Receiving root hints..."curl -#o /etc/unbound/root.hints https://www.internic.net/domain/named.cache/usr/sbin/unbound-control-setup# Run hooksfor file in /hooks/*; do  if [ -x "${file}" ]; then    echo "Running hook ${file}"    "${file}"  fidoneexec "$@"
 |