blob: e2d5ad6f3f195d5f826ed85254ffb8b2ed7cbe76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/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
return
fi
install_template -m 0644 /etc/resolv.conf
|