Merge pull request #3922 from ThomasWaldmann/arch-locale

vagrant: arch64 VM: generate and set en_US.UTF-8 locale
This commit is contained in:
TW 2018-06-23 00:19:02 +02:00 committed by GitHub
commit f4aae9db5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

3
Vagrantfile vendored
View File

@ -28,6 +28,9 @@ end
def packages_arch def packages_arch
return <<-EOF return <<-EOF
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
localectl set-locale LANG=en_US.UTF-8
chown vagrant.vagrant /vagrant chown vagrant.vagrant /vagrant
pacman --sync --noconfirm python-virtualenv python-pip pacman --sync --noconfirm python-virtualenv python-pip
EOF EOF