diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-09 12:20:48 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-09 12:20:48 +0000 |
commit | ec08bc62f4f1728d16688f80ce72c144e19466c7 (patch) | |
tree | 456609460160bb9c656f36814c7c32a84fe97cf4 /deployment/common/manifests | |
parent | 243c4df254610fee26105ac6e16950f132c2d30d (diff) | |
download | puppet-ec08bc62f4f1728d16688f80ce72c144e19466c7.tar puppet-ec08bc62f4f1728d16688f80ce72c144e19466c7.tar.gz puppet-ec08bc62f4f1728d16688f80ce72c144e19466c7.tar.bz2 puppet-ec08bc62f4f1728d16688f80ce72c144e19466c7.tar.xz puppet-ec08bc62f4f1728d16688f80ce72c144e19466c7.zip |
add class to set locale system wide
Diffstat (limited to 'deployment/common/manifests')
-rw-r--r-- | deployment/common/manifests/init.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/deployment/common/manifests/init.pp b/deployment/common/manifests/init.pp index bb815bfe..c8465bc7 100644 --- a/deployment/common/manifests/init.pp +++ b/deployment/common/manifests/init.pp @@ -14,6 +14,13 @@ class common { } } + class i18n { + # push the locale everywhere, as it affect facter + file { "/etc/sysconfig/i18n": + content => template("common/i18n"), + } + } + class export_ssh_keys { @@sshkey { ["$hostname","$fqdn","$ipaddress"]: type => rsa, |