Skip to content
Snippets Groups Projects
Unverified Commit 9ef1ba62 authored by Ritesh Raj Sarraf's avatar Ritesh Raj Sarraf
Browse files

Move hostname ip entry to the end of /etc/hosts


spymemcached package is FTBFS because a test expects a reverse lookup of
127.0.0.1 to return localhost, but current /etc/hosts configuration
returns the hostname instead.

Let's move this `hostname/ip` entry to the end of /etc/hosts so the
reverse lookup of 127.0.0.1 returns localhost, which makes sense to be
the default case usually.

Signed-off-by: Ariel D'Alessandro's avatarAriel D'Alessandro <ariel.dalessandro@collabora.com>
Signed-off-by: default avatarRitesh Raj Sarraf <ritesh.sarraf@collabora.com>
parent 71c2e343
No related branches found
No related tags found
1 merge request!27Move hostname ip entry to the end of /etc/hosts
From: Ariel D'Alessandro <ariel.dalessandro@collabora.com>
Date: Mon, 21 Jun 2021 12:04:54 -0300
Subject: init_buildsystem: Move hostname ip entry to the end of /etc/hosts
spymemcached package is FTBFS because a test expects a reverse lookup of
127.0.0.1 to return localhost, but current /etc/hosts configuration
returns the hostname instead.
Let's move this `hostname/ip` entry to the end of /etc/hosts so the
reverse lookup of 127.0.0.1 returns localhost, which makes sense to be
the default case usually.
Signed-off-by: Ariel D'Alessandro <ariel.dalessandro@collabora.com>
Bug-Debian: https://bugs.debian.org/990278
---
init_buildsystem | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/init_buildsystem b/init_buildsystem
index d362bc7..e172de6 100755
--- a/init_buildsystem
+++ b/init_buildsystem
@@ -1169,11 +1169,7 @@ fi
test -e $BUILD_ROOT/.build/init_buildsystem.data || HOST=`hostname`
test -e $BUILD_ROOT/etc/hosts || echo "127.0.0.1 localhost" > $BUILD_ROOT/etc/hosts
if ! grep -F "127.0.0.1 $HOST" $BUILD_ROOT/etc/hosts > /dev/null ; then
- # this makes a reverse lookup on 127.0.0.1 return the host name,
- # which is bad, but 127.0.0.2 does not work on all unix systems
- echo "127.0.0.1 $HOST" > $BUILD_ROOT/etc/hosts.new
- test -f $BUILD_ROOT/etc/hosts && cat $BUILD_ROOT/etc/hosts >> $BUILD_ROOT/etc/hosts.new
- mv $BUILD_ROOT/etc/hosts.new $BUILD_ROOT/etc/hosts
+ echo "127.0.0.1 $HOST" >> $BUILD_ROOT/etc/hosts
fi
rm -f $BUILD_ROOT/.rpmmacros $BUILD_ROOT/root/.rpmmacros
......@@ -40,3 +40,4 @@ collabora/Add-a-new-none-or-some-element-allowbuilddep-to-project-m.patch
collabora/Use-the-allowbuilddep-in-meta-config-to-whitelist-project.patch
collabora/Invalidate-the-rails-cache-for-project-meta-xml-in-show_p.patch
collabora/Suppress-a-500-error-in-the-web-UI-for-project-meta-confi.patch
collabora/init_buildsystem-Move-hostname-ip-entry-to-the-end-of-etc.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment