blob: 43b1fc3a467bcf452b14ad4b96987e5c77f57fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
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'),
}
}
|