diff options
author | Pascal Terjan <pterjan@mageia.org> | 2017-10-05 22:57:04 +0100 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2017-10-05 22:57:04 +0100 |
commit | b9cb83f384201e038c699c0bfc3ef16d5aad2eac (patch) | |
tree | 1816b56ebcb77f95d2c6fd1d8d08809081623326 | |
parent | 435e218e4dcc413e1d74f1ad39c7882de5b9b7ee (diff) | |
download | iurt-b9cb83f384201e038c699c0bfc3ef16d5aad2eac.tar iurt-b9cb83f384201e038c699c0bfc3ef16d5aad2eac.tar.gz iurt-b9cb83f384201e038c699c0bfc3ef16d5aad2eac.tar.bz2 iurt-b9cb83f384201e038c699c0bfc3ef16d5aad2eac.tar.xz iurt-b9cb83f384201e038c699c0bfc3ef16d5aad2eac.zip |
Networking fixes
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | iurt_root_command | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,8 @@ - iurt: add an option to disable the use of network namespaces - iurt, ulri, emi: allow overriding a true config value with a false one and add some tests. +- iurt: add a (really broken) default route on interface lo +- iurt: fix dns configuration in chroot whn using netns 0.7.1 - iurt: also use --urpmi-root for urpmi.addmedia diff --git a/iurt_root_command b/iurt_root_command index 971b690..5478df7 100755 --- a/iurt_root_command +++ b/iurt_root_command @@ -419,6 +419,10 @@ sub netns_create { my $nsname = basename($dest); system("ip", "netns", "add", $nsname) and return; system("ip", "netns", "exec", $nsname, "ifconfig", "lo", "up"); + # We don't configure a DNS server so make sure one is not excepted + system("sed -i |^hosts:|hosts: files| $dest/etc/nsswitch.conf"); + # Some packages want a default route + system("ip", "netns", "exec", $nsname, "ip", "route", "add", "0.0.0.0/0", "dev", "lo"); my $hostname = `hostname`; system("echo '127.0.0.1 localhost $hostname' > $dest/etc/hosts"); system("echo > $dest/etc/resolv.conf"); |