소스 검색

Merge pull request #3922 from ThomasWaldmann/arch-locale

vagrant: arch64 VM: generate and set en_US.UTF-8 locale
TW 7 년 전
부모
커밋
f4aae9db5c
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Vagrantfile

+ 3 - 0
Vagrantfile

@@ -28,6 +28,9 @@ end
 
 def packages_arch
   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
     pacman --sync --noconfirm python-virtualenv python-pip
   EOF