From 7f27411f023c7bb0dd941c5a4ceb02e7e6de3680 Mon Sep 17 00:00:00 2001 From: Markus Bucher Date: Wed, 25 Oct 2023 16:51:17 +0200 Subject: [PATCH] Fix ansible-error: unsupported locale setting --- vagrant/lib/forklift/box_distributor.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/vagrant/lib/forklift/box_distributor.rb b/vagrant/lib/forklift/box_distributor.rb index 86afe1a33..77ce5e381 100644 --- a/vagrant/lib/forklift/box_distributor.rb +++ b/vagrant/lib/forklift/box_distributor.rb @@ -88,6 +88,7 @@ def define_vm(config, box = {}) "#{box.fetch('name').to_s.tr('.', '-')}.#{domain}" end + ENV['LC_ALL'] = "C.UTF-8" resize_disk(machine) if box.fetch('disk_size', false) networks = configure_networks(box.fetch('networks', []))