From 98a071604ea9f7569aa0fa0688bc9d35081770c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Tue, 2 Oct 2018 22:53:29 +0200 Subject: Add Flony workstation --- modules/base_installation/manifests/locales.pp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'modules/base_installation/manifests/locales.pp') diff --git a/modules/base_installation/manifests/locales.pp b/modules/base_installation/manifests/locales.pp index 0f31e0b..90dabee 100644 --- a/modules/base_installation/manifests/locales.pp +++ b/modules/base_installation/manifests/locales.pp @@ -29,9 +29,16 @@ class base_installation::locales inherits base_installation { } - file { "/etc/vconsole.conf": - ensure => "link", - target => "/dev/null", + if ($environment == "workstation") { + file { "/etc/vconsole.conf": + ensure => "file", + content => "KEYMAP=fr", + } + } else { + file { "/etc/vconsole.conf": + ensure => "link", + target => "/dev/null", + } } } -- cgit v1.2.3