From d3c192cd2dd36ff2329e55ed4d2599bf12cd5b07 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 27 Aug 2012 04:05:35 +0000 Subject: mount /dev/shm in chroots too (needed for eg: python) --- lib/Iurt/Chroot.pm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib/Iurt/Chroot.pm') diff --git a/lib/Iurt/Chroot.pm b/lib/Iurt/Chroot.pm index 7b75274..539fd07 100644 --- a/lib/Iurt/Chroot.pm +++ b/lib/Iurt/Chroot.pm @@ -71,6 +71,12 @@ sub clean_chroot { sudo($config, "--umount", "$chroot/proc"); return; } + if (system("$sudo mount none -t tmpfs $chroot/dev/shm")) { + plog('ERROR', "Failed to mount dev/shm"); + sudo($config, "--umount", "$chroot/proc"); + sudo($config, "--umount", "$chroot/dev/pts"); + return; + } if ($run->{icecream}) { system("$sudo mkdir -p $chroot/var/cache/icecream"); if (!sudo($config, '--bindmount', "/var/cache/icecream", "$chroot/var/cache/icecream")) { @@ -107,6 +113,7 @@ sub _clean_mounts { my ($run, $config, $chroot) = @_; sudo($config, "--umount", "$chroot/proc"); sudo($config, "--umount", "$chroot/dev/pts"); + sudo($config, "--umount", "$chroot/dev/shm"); if ($run->{icecream}) { sudo($config, "--umount", "$chroot/var/cache/icecream"); @@ -361,7 +368,7 @@ sub build_chroot { plog('DEBUG', "building the chroot with " . join(', ', @{$config->{basesystem_packages}})); - sudo($config, "--mkdir", "-p", "$tmp_chroot/dev/pts", + sudo($config, "--mkdir", "-p", "$tmp_chroot/dev/pts", "$tmp_chroot/dev/shm", "$tmp_chroot/etc/sysconfig", "$tmp_chroot/proc", "$tmp_chroot/var/lib/rpm"); -- cgit v1.2.1