aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/common/manifests/i18n.pp
blob: 7df460894cb59fdee2589fd6323c3d4b84f2e7a8 (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 affect facter
    file { '/etc/sysconfig/i18n':
        content => template('common/i18n'),
    }

    file { '/etc/locale.conf':
        content => template('common/locale.conf'),
    }
}