aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2017-10-04 00:49:37 +0100
committerPascal Terjan <pterjan@mageia.org>2017-10-04 00:49:37 +0100
commit8b543746ca0866a074278aeb9e5cb27fcf1d3bad (patch)
tree97b33d21853e95cbcfb7a7ebb9b5085cd1ae625c
parent171ad7c79eacd797a2aef0488a52069bb1ef8a62 (diff)
downloadiurt-8b543746ca0866a074278aeb9e5cb27fcf1d3bad.tar
iurt-8b543746ca0866a074278aeb9e5cb27fcf1d3bad.tar.gz
iurt-8b543746ca0866a074278aeb9e5cb27fcf1d3bad.tar.bz2
iurt-8b543746ca0866a074278aeb9e5cb27fcf1d3bad.tar.xz
iurt-8b543746ca0866a074278aeb9e5cb27fcf1d3bad.zip
Bring lo up in the chroot
-rw-r--r--NEWS2
-rwxr-xr-xiurt_root_command4
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f33326a..be905fb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- iurt: bring lo up in the chroot
+
0.7.1
- iurt: also use --urpmi-root for urpmi.addmedia
- iurt: always use --root or --urpmi-root, not plain chroot to call urpmi
diff --git a/iurt_root_command b/iurt_root_command
index 8c1b265..18068d0 100755
--- a/iurt_root_command
+++ b/iurt_root_command
@@ -416,7 +416,9 @@ sub btrfs_snapshot {
sub netfs_create {
my ($_run, $dest) = @_;
check_path_authorized($dest) or return;
- return !system("ip", "netns", "add", basename($dest));
+ my $nsname = basename($dest);
+ system("ip", "netns", "add", $nsname) and return;
+ return !system("ip", "netns", "exec", $nsname, "ifconfig", "lo", "up");
}
sub netfs_delete {