summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <christopher.baines@digital.cabinet-office.gov.uk>2016-11-14 09:45:27 +0000
committerChristopher Baines <christopher.baines@digital.cabinet-office.gov.uk>2016-11-14 15:08:53 +0000
commit2a447a3b3b03893fb1f1578723927621d03bedbe (patch)
tree0fc8a3f6adcd8aacb80cab55166975f08346a539
parent81d9ad0858ac4103591d25c1e23e3b78d3e19d60 (diff)
downloadgnu-guix-2a447a3b3b03893fb1f1578723927621d03bedbe.tar
gnu-guix-2a447a3b3b03893fb1f1578723927621d03bedbe.tar.gz
Don't include the shared network files in /etc
As these conflict with those from the host.
-rw-r--r--gnu/system.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index ad4492db6c..9bdc19ffd8 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -477,16 +477,16 @@ then
source /run/current-system/profile/etc/profile.d/bash_completion.sh
fi\n")))
(etc-service
- `(("services" ,(file-append net-base "/etc/services"))
+ `(;("services" ,(file-append net-base "/etc/services"))
("protocols" ,(file-append net-base "/etc/protocols"))
("rpc" ,(file-append net-base "/etc/rpc"))
("login.defs" ,#~#$login.defs)
("issue" ,#~#$issue)
- ("nsswitch.conf" ,#~#$nsswitch)
+ ;("nsswitch.conf" ,#~#$nsswitch)
("profile" ,#~#$profile)
("bashrc" ,#~#$bashrc)
- ("hosts" ,#~#$(or (operating-system-hosts-file os)
- (default-/etc/hosts (operating-system-host-name os))))
+ ;("hosts" ,#~#$(or (operating-system-hosts-file os)
+ ; (default-/etc/hosts (operating-system-host-name os))))
("localtime" ,(file-append tzdata "/share/zoneinfo/"
(operating-system-timezone os)))
("sudoers" ,(operating-system-sudoers-file os))))))