From 7a75fa5aa67f5276c6d4272fc3a00974e90416f9 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..d8afc3927 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', []))