system: Fix the default /etc/hosts.
* gnu/system.scm (default-/etc/hosts): Fix the alias/address order. Add ::1.
This commit is contained in:
parent
5dae0186de
commit
7d6a52c0dc
|
@ -268,8 +268,8 @@ This is the GNU system. Welcome.\n")
|
||||||
(define (default-/etc/hosts host-name)
|
(define (default-/etc/hosts host-name)
|
||||||
"Return the default /etc/hosts file."
|
"Return the default /etc/hosts file."
|
||||||
(text-file "hosts"
|
(text-file "hosts"
|
||||||
(string-append "localhost 127.0.0.1\n"
|
(string-append "127.0.0.1 localhost " host-name "\n"
|
||||||
host-name " 127.0.0.1\n")))
|
"::1 localhost " host-name "\n")))
|
||||||
|
|
||||||
(define* (etc-directory #:key
|
(define* (etc-directory #:key
|
||||||
(locale "C") (timezone "Europe/Paris")
|
(locale "C") (timezone "Europe/Paris")
|
||||||
|
|
Loading…
Reference in New Issue