From 7d4c5a5e499eb17191ddcbbada596df33831260b Mon Sep 17 00:00:00 2001 From: Marcelo Leitner Date: Tue, 29 May 2007 15:21:42 +0000 Subject: - Fix wrongly copied-pasted variable $chroot (should be $tmp_chroot) --- lib/Iurt/Chroot.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Iurt/Chroot.pm b/lib/Iurt/Chroot.pm index 0f52f56..c4b2f15 100644 --- a/lib/Iurt/Chroot.pm +++ b/lib/Iurt/Chroot.pm @@ -467,8 +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 $chroot/proc &> /dev/null"); - system("$sudo umount $chroot/dev/pts &> /dev/null"); + system("$sudo umount $tmp_chroot/proc &> /dev/null"); + system("$sudo umount $tmp_chroot/dev/pts &> /dev/null"); return !system($sudo, 'tar', 'czf', $chroot_tar, '-C', $tmp_chroot, '.'); } } -- cgit v1.2.1