summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-30 13:30:24 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-30 13:32:46 +0100
commite18c3b39db8baffd118215225c5d385227efb544 (patch)
treeacd50135bab2e3ee5d46d28ec940450cf8de37b1
parentcleanup (diff)
downloadwebdav_server-e18c3b39db8baffd118215225c5d385227efb544.tar.gz
webdav_server-e18c3b39db8baffd118215225c5d385227efb544.tar.xz
Add en_GB locale.
-rw-r--r--modules/profiles/manifests/workstation.pp4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/profiles/manifests/workstation.pp b/modules/profiles/manifests/workstation.pp
index 2b11524..9cff2f1 100644
--- a/modules/profiles/manifests/workstation.pp
+++ b/modules/profiles/manifests/workstation.pp
@@ -105,11 +105,15 @@ class profiles::workstation {
$locales = [
'en_DK.UTF-8 UTF-8',
'en_US.UTF-8 UTF-8',
+ 'en_GB.UTF-8 UTF-8',
'sv_SE.UTF-8 UTF-8',
'sv_SE.ISO-8859-1 ISO-8859-1',
'',
]
+ # TODO possibly check in /usr/share/i18n/locales if file exists
+ # there
+
file { '/etc/locale.gen':
content => $locales.join("\n")
} ~> exec { 'locale-gen':