blob: 1df12ef4e4a09f0c976648e39a6cf7a401c65a41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# For IDM servers, the resolver is localhost. In that case, we delay copying
# this file until the IDM stack is fully up and running.
if [ "$BOXCONF_HOSTCLASS" = idm_server ]; then
if [ "${idm_bootstrap:-}" = true ]; then
printf 'nameserver %s\n' "$bootstrap_resolvers" > /etc/resolv.conf
fi
return
fi
install_template -m 0644 /etc/resolv.conf
|