aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/common/manifests/i18n.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/common/manifests/i18n.pp')
-rw-r--r--deployment/common/manifests/i18n.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/deployment/common/manifests/i18n.pp b/deployment/common/manifests/i18n.pp
new file mode 100644
index 00000000..43b1fc3a
--- /dev/null
+++ b/deployment/common/manifests/i18n.pp
@@ -0,0 +1,12 @@
+class common::i18n {
+ package { 'locales-en': }
+
+ # push the locale everywhere, as it affects facter
+ file { '/etc/sysconfig/i18n':
+ content => template('common/i18n'),
+ }
+
+ file { '/etc/locale.conf':
+ content => template('common/locale.conf'),
+ }
+}