aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYifei Xue <xueyifei@huawei.com>2017-09-30 16:21:04 +0800
committerJustin chi <chigang@huawei.com>2017-10-11 02:39:36 +0000
commit86eb75c8201504316e2b1cd3ad5df21e54fd2171 (patch)
tree9ae01c6323a89d25bd3a402e6987efa026608385
parent7304d45d9ae0b1d499d39b23167dfc2323810100 (diff)
Add customized DNS server support
JIRA: - Currently Compass uses the gateway of install network as the only DNS server of host1 to 5. Sometimes it doesn't work in some environments. This patch we add a variable named USER_NAMESERVER which can be exported before deployment. It is used to store a user defined DNS nameserver. Change-Id: Id74889c20cf09ec7e25d882b56ab6331ee64cdcf Signed-off-by: Yifei Xue <xueyifei@huawei.com> (cherry picked from commit 7b110b32e0688896967703dc2bfe7192d469164f)
-rw-r--r--deploy/conf/compass.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/conf/compass.conf b/deploy/conf/compass.conf
index 2c47ac48..98ba3027 100644
--- a/deploy/conf/compass.conf
+++ b/deploy/conf/compass.conf
@@ -14,7 +14,7 @@ export COMPASS_EXTERNAL_GW=${COMPASS_EXTERNAL_GW:-}
export LANGUAGE="EN"
export TIMEZONE="America/Los_Angeles"
export NTP_SERVER="$COMPASS_SERVER"
-export NAMESERVERS="$COMPASS_SERVER"
+export NAMESERVERS=${USER_NAMESERVER:-"$COMPASS_SERVER"}
export COMPASS_REPO_PORT="5151"
export OFFLINE_DEPLOY=${OFFLINE_DEPLOY:-'Disable'}