diff options
author | Erich Eckner <git@eckner.net> | 2018-01-08 13:33:14 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-10-09 14:11:51 +0200 |
commit | 7d7f9c68ee2584a519f656ac5f656af8b5842fd3 (patch) | |
tree | 4f21a75cb97c61c275916c9a6fa3665510f9b534 | |
parent | e55d4d6d06de50c18fa3535bfd3aecaa6fa4d942 (diff) | |
download | devtools32-7d7f9c68ee2584a519f656ac5f656af8b5842fd3.tar.xz |
mkarchroot.in: copy host's /etc/hosts into the chroot
-rw-r--r-- | mkarchroot.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mkarchroot.in b/mkarchroot.in index 6c42d3b..a0cacac 100644 --- a/mkarchroot.in +++ b/mkarchroot.in @@ -89,6 +89,7 @@ pacstrap -Mcd ${pac_conf:+-C "$pac_conf"} "$working_dir" \ "${cache_dirs[@]/#/--cachedir=}" "$@" || die 'Failed to install all packages' printf '%s.UTF-8 UTF-8\n' en_US de_DE > "$working_dir/etc/locale.gen" +cat '/etc/hosts' > "$working_dir/etc/hosts" echo 'LANG=en_US.UTF-8' > "$working_dir/etc/locale.conf" echo "$CHROOT_VERSION" > "$working_dir/.arch-chroot" |