Remove temporary DNS fix. 58/31758/1
authorDave Wallace <[email protected]>
Wed, 24 Mar 2021 23:21:33 +0000 (19:21 -0400)
committerDave Wallace <[email protected]>
Wed, 24 Mar 2021 23:25:10 +0000 (19:25 -0400)
- Use search domain in /etc/resolv.conf as hostname.

Change-Id: Iaf156a2096a1b60f6222fa2d7f99101d72e2572c
Signed-off-by: Dave Wallace <[email protected]>
jjb/scripts/backup_upload_archives.sh
jjb/scripts/setup_executor_env.sh

index 1a9c577..0599c96 100755 (executable)
@@ -23,9 +23,6 @@ if [ -f "$PYTHON_SCRIPT" ]; then
        exit 0
 fi
 
-# TEMPORARY: talk to consul-aware resolver rather than external ones
-echo "nameserver 172.17.0.1" >/etc/resolv.conf
-
 # the Python code below needs boto3 installed
 python3 -m pip install boto3
 mkdir -p $(dirname "$PYTHON_SCRIPT")
index 1cc922a..f6b6480 100755 (executable)
@@ -29,7 +29,7 @@ echo "$long_line"
 echo "Executor OS: $OS_ID-$OS_VERSION_ID"
 echo "Executor Arch: $OS_ARCH"
 # TODO: fix this to print nomad server hostname
-echo "Executor hostname: $(hostname)"
+echo "Executor hostname: $(grep search /etc/resolv.conf | cut -d' ' -f2 | head -1)"
 
 echo "$long_line"
 if [ -f "$dockerfile" ] ; then
@@ -55,10 +55,8 @@ pip3 list 2>/dev/null | column -t || true
 echo "$long_line"
 echo "Executor Downloads cache '$downloads_cache':"
 ls -lh "$downloads_cache" || true
-echo "$long_line"
 
-# TEMPORARY: talk to consul-aware resolver rather than external ones
-echo "nameserver 172.17.0.1" >/etc/resolv.conf
+echo "$long_line"
 echo "DNS nameserver config in '/etc/resolv.conf':"
 cat /etc/resolv.conf || true
 echo "$long_line"