aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/locales.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/base_installation/manifests/locales.pp')
-rw-r--r--modules/base_installation/manifests/locales.pp13
1 files changed, 10 insertions, 3 deletions
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 {
29 } 29 }
30 30
31 31
32 file { "/etc/vconsole.conf": 32 if ($environment == "workstation") {
33 ensure => "link", 33 file { "/etc/vconsole.conf":
34 target => "/dev/null", 34 ensure => "file",
35 content => "KEYMAP=fr",
36 }
37 } else {
38 file { "/etc/vconsole.conf":
39 ensure => "link",
40 target => "/dev/null",
41 }
35 } 42 }
36 43
37} 44}