Closed PaulWalkerUK closed 3 years ago
The default value for $config_file is wrong for ArchLinux. It is currently:
$config_file
$config_file = '/etc/locales.gen'
It should be:
$config_file = '/etc/locale.gen'
It is possible to work around this be manually setting config_file as a parameter, eg:
config_file
class { 'locales': default_locale => 'en_US.UTF-8', locales => ['en_US.UTF-8 UTF-8', 'fr_CH.UTF-8 UTF-8'], config_file => '/etc/locale.gen', }
The default value for
$config_file
is wrong for ArchLinux. It is currently:It should be:
It is possible to work around this be manually setting
config_file
as a parameter, eg: