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:
parent
9d0af1731c
commit
abd1f30c3e
@ -26,7 +26,7 @@ start()
|
|||||||
# because it makes some of the pre-created dotfiles invalid (e.g. .kde/cache-<hostname>)
|
# 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)
|
# (let's be frank: nobody's gonna use xterm on DispVM)
|
||||||
hostname $name
|
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
|
fi
|
||||||
|
|
||||||
timezone=`/usr/bin/xenstore-read qubes-timezone 2> /dev/null`
|
timezone=`/usr/bin/xenstore-read qubes-timezone 2> /dev/null`
|
||||||
|
@ -52,7 +52,7 @@ done
|
|||||||
name=`$XS_READ name`
|
name=`$XS_READ name`
|
||||||
if [ -n "$name" ]; then
|
if [ -n "$name" ]; then
|
||||||
hostname $name
|
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
|
fi
|
||||||
|
|
||||||
timezone=`$XS_READ qubes-timezone 2> /dev/null`
|
timezone=`$XS_READ qubes-timezone 2> /dev/null`
|
||||||
|
Loading…
Reference in New Issue
Block a user