diff options
author | Erich Eckner <git@eckner.net> | 2018-01-08 13:33:14 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-02-19 09:39:53 +0100 |
commit | edd6bdf374c1b56e4275a2a948570226b0675ad5 (patch) | |
tree | b614531bbb8108c6f45c3ea7da8e11b874f49da9 /mkarchroot.in | |
parent | 3db6806fecaf79317c0c60f4e650cb71e39ac6ca (diff) | |
download | devtools32-edd6bdf374c1b56e4275a2a948570226b0675ad5.tar.xz |
mkarchroot.in: copy host's /etc/hosts into the chroot
Diffstat (limited to 'mkarchroot.in')
-rw-r--r-- | mkarchroot.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mkarchroot.in b/mkarchroot.in index 37f6802..fc5ded6 100644 --- a/mkarchroot.in +++ b/mkarchroot.in @@ -94,6 +94,7 @@ pacstrap -${umode}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" |