diff options
author | Simo Leone <simo@archlinux.org> | 2008-02-05 23:59:53 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-06 10:09:07 -0600 |
commit | e0f139ad0e2b4144c39fa4431d174f453eb0ca52 (patch) | |
tree | cc4be8e8e0bfcb9fa4e54b83a83450d5e3ac216a /mkarchroot | |
parent | 0410fb0a2f2bdaf3d127e54ec232eddbfc0f70dd (diff) | |
download | devtools32-e0f139ad0e2b4144c39fa4431d174f453eb0ca52.tar.xz |
Separate mounting from config copying
Copying the configs before installing stuff
caused conflicts. Running the host's pacman
uses the host's configuration anyway, so
there is no need to copy them in this case.
Signed-off-by: Simo Leone <simo@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mkarchroot')
-rwxr-xr-x | mkarchroot | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -81,13 +81,17 @@ chroot_mount () [ -e "${working_dir}/var/cache/pacman" ] || mkdir -p "${working_dir}/var/cache/pacman" mount -o bind /var/cache/pacman "${working_dir}/var/cache/pacman" + trap 'chroot_umount' 0 1 2 15 +} + +copy_hostconf () +{ echo "copying mtab : /etc/mtab" cp /etc/mtab "${working_dir}/etc/mtab" echo "copying resolv.conf : /etc/resolv.conf" cp /etc/resolv.conf "${working_dir}/etc/resolv.conf" - trap 'chroot_umount' 0 1 2 15 } chroot_umount () @@ -110,6 +114,7 @@ if [ "$RUN" != "" ]; then fi chroot_mount + copy_hostconf echo "starting chroot ($RUN)" chroot "${working_dir}" ${RUN} |