5 lines
195 B
Bash
5 lines
195 B
Bash
#!/bin/bash
|
|
set -o errexit -o noclobber -o pipefail -o nounset
|
|
|
|
podman exec unbound sh -c "/usr/bin/curl -sSL https://www.internic.net/domain/named.cache -o /usr/local/unbound/iana.d/root.hints"
|