From e6c55a1311ebde7ea08ed33dccbff80df6b35294 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Wed, 27 Oct 2021 02:43:48 +0200 Subject: [PATCH] Chroot.initialize: also bind-mount pacman-cache for base-like chroots (that don't get copied) --- chroot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chroot.py b/chroot.py index b88457c..daf9a45 100644 --- a/chroot.py +++ b/chroot.py @@ -241,6 +241,7 @@ class Chroot: rmtree(dir) self.write_pacman_conf() + self.mount_pacman_cache() logging.info(f'Pacstrapping chroot {self.name}: {", ".join(self.base_packages)}')