diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-11-29 05:18:26 +0100 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-11-29 05:18:26 +0100 |
commit | bc8a791ad64e34914ccce1559ec86ddf84db2427 (patch) | |
tree | 3ca4e907c4ac517108d7ca94099a1b43c95de1a2 | |
parent | 4a829ff1f769d785a07fb263f528166ad23a19a8 (diff) | |
download | devtools-bc8a791ad64e34914ccce1559ec86ddf84db2427.tar.gz devtools-bc8a791ad64e34914ccce1559ec86ddf84db2427.tar.xz |
Copy resolv.conf each time just like mtab
Resolv.conf changes, like mtab, so we can't just trust it to copy on build only
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | mkarchroot | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -84,6 +84,9 @@ chroot_mount () 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 } @@ -164,9 +167,6 @@ else cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf fi - echo "copying resolv.conf : /etc/resolv.conf" - cp /etc/resolv.conf "${working_dir}/etc/resolv.conf" - echo "generating default locales" cp /etc/locale.gen "${working_dir}/etc/locale.gen" chroot "${working_dir}" locale-gen |