#6794 Add to doc trick how to define locale for SSH session in Vagrant

file
This commit is contained in:
michal 2016-01-04 21:58:02 +01:00
parent d1d493c323
commit fdcf53b56d
1 changed files with 17 additions and 0 deletions

View File

@ -47,3 +47,20 @@ every node will actually provision with the same text.
This is an easy mistake to make, and Vagrant can't really protect against it, This is an easy mistake to make, and Vagrant can't really protect against it,
so the best we can do is mention it here. so the best we can do is mention it here.
## Overwrite host locale in ssh session
Usually, host locale environment variables are passed to guest. It may cause
failures when guest software do not support host locale
Possible solution is override locale in Vagrant file:
<pre class="prettyprint">
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/vivid64"
ENV['LC_ALL']="en_US.UTF-8"
end
</pre>
The change is visible within Vagrantfile only.