vm: Add localhost alias to /etc/hosts

... or otherwise, some programs will hang for many secconds trying to resolve localhost.
This commit is contained in:
Joanna Rutkowska 2012-05-08 18:30:21 +02:00 committed by Marek Marczykowski
parent 81138182f6
commit 02e312ab04
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ start()
# because it makes some of the pre-created dotfiles invalid (e.g. .kde/cache-<hostname>)
# (let's be frank: nobody's gonna use xterm on DispVM)
hostname $name
(grep -v "\<$name\>" /etc/hosts; echo "127.0.0.1 $name") > /etc/hosts
(grep -v "\<$name\>" /etc/hosts; echo "127.0.0.1 $name localhost") > /etc/hosts
fi
timezone=`/usr/bin/xenstore-read qubes-timezone 2> /dev/null`

View File

@ -52,7 +52,7 @@ done
name=`$XS_READ name`
if [ -n "$name" ]; then
hostname $name
(grep -v "\<$name\>" /etc/hosts; echo "127.0.0.1 $name") > /etc/hosts
(grep -v "\<$name\>" /etc/hosts; echo "127.0.0.1 $name localhost") > /etc/hosts
fi
timezone=`$XS_READ qubes-timezone 2> /dev/null`