aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Iurt/Chroot.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Iurt/Chroot.pm b/lib/Iurt/Chroot.pm
index 54ff787..0f52f56 100644
--- a/lib/Iurt/Chroot.pm
+++ b/lib/Iurt/Chroot.pm
@@ -467,7 +467,8 @@ sub build_chroot {
}
system($sudo, 'chown', '-R', 499, "$tmp_chroot/home/builder");
sudo($run, $config, "--rm", "$tmp_chroot/var/lib/rpm/__db*");
- system("sudo umount $tmp_chroot/proc");
+ system("$sudo umount $chroot/proc &> /dev/null");
+ system("$sudo umount $chroot/dev/pts &> /dev/null");
return !system($sudo, 'tar', 'czf', $chroot_tar, '-C', $tmp_chroot, '.');
}
}