1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-22 13:33:52 +03:00

feature #2391: changed variable SEARCH to SEARCH_DOMAIN

SEARCH is too generic and could be mistanken with some other ot may be used
in the future for other things.
This commit is contained in:
Javi Fontan 2013-11-11 15:32:56 +01:00
parent f7cae7f40d
commit 9044b6491b

View File

@ -18,7 +18,7 @@
export DNS_VARIABLES="DNS $(env | sed 's/=.*$//' | grep -E '^ETH[0-9]+_DNS$' | sort)"
export SEARCH_VARIABLES="SEARCH $(env | sed 's/=.*$//' | grep -E '^ETH[0-9]+_SEARCH$' | sort)"
export SEARCH_VARIABLES="SEARCH_DOMAIN $(env | sed 's/=.*$//' | grep -E '^ETH[0-9]+_SEARCH_DOMAIN$' | sort)"
nameservers=$(
for var in ${DNS_VARIABLES}; do
@ -49,3 +49,4 @@ done
[ -z "$searchdomains" ] && exit 0
echo search $searchdomains >> /etc/resolv.conf