mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-21 01:07:49 +00:00
8 lines
220 B
Bash
Executable file
8 lines
220 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Receiving anchor key..."
|
|
/usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.key
|
|
echo "Receiving root hints..."
|
|
curl -#o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
|
|
|
|
exec "$@"
|