diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-29 22:08:29 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-04-26 20:32:26 +0200 |
commit | b75e0ba0a297fd64307960f98f30c27a689deab7 (patch) | |
tree | 4f658f480249fc53cbdca2ad2220a4ed680d05da | |
parent | a5f847beab098f6d316f7c925509c7aa9a76e21f (diff) | |
download | vyos-1x-b75e0ba0a297fd64307960f98f30c27a689deab7.tar.gz vyos-1x-b75e0ba0a297fd64307960f98f30c27a689deab7.zip |
vyos-hostsd: T4270: resolve only hostname without domain name to 127.0.1.1
This is a fix for commit 665ae50729 ("vyos-hostsd: T4270: do not resolve local
router FQDN to 127.0.1.1") as it made calls to sudo super slow due to:
sudo: unable to resolve host vyos: System error
To avoid the initial issue we only add the hostname without domain name, thus
the FQDN is not resolved by powerdns.
(cherry picked from commit 3712f28025a5bc99e941b5212091a2732b9f6d6c)
-rw-r--r-- | data/templates/vyos-hostsd/hosts.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/vyos-hostsd/hosts.tmpl b/data/templates/vyos-hostsd/hosts.tmpl index 03662d562..0875adfd8 100644 --- a/data/templates/vyos-hostsd/hosts.tmpl +++ b/data/templates/vyos-hostsd/hosts.tmpl @@ -3,7 +3,7 @@ # Local host 127.0.0.1 localhost -127.0.1.1 {{ host_name }}{% if domain_name %}.{{ domain_name }} {{ host_name }}{% endif %} +127.0.1.1 {{ host_name }} # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback |