aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/puppet.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2017-09-17 22:59:01 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2017-09-18 00:22:19 +0200
commit22e79acd8038fe134d217cff09b88b51a65bf12d (patch)
tree9213b7a582df083a85bc905cb32c8ea315bbbd51 /modules/base_installation/manifests/puppet.pp
parent248bd83ed797f6e0f385e72a56aa7bafdf23d490 (diff)
downloadPuppet-22e79acd8038fe134d217cff09b88b51a65bf12d.tar.gz
Puppet-22e79acd8038fe134d217cff09b88b51a65bf12d.tar.zst
Puppet-22e79acd8038fe134d217cff09b88b51a65bf12d.zip
Prevent Gettext warning
Diffstat (limited to 'modules/base_installation/manifests/puppet.pp')
-rw-r--r--modules/base_installation/manifests/puppet.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/base_installation/manifests/puppet.pp b/modules/base_installation/manifests/puppet.pp
index cd5697a..6ad4b22 100644
--- a/modules/base_installation/manifests/puppet.pp
+++ b/modules/base_installation/manifests/puppet.pp
@@ -13,6 +13,20 @@ class base_installation::puppet (
13 environment => "RANDFILE=/dev/null", 13 environment => "RANDFILE=/dev/null",
14 } 14 }
15 15
16 ### Until puppet fixes hist gettext-setup gem use
17 package { 'gem:gettext-setup':
18 name => "gettext-setup",
19 ensure => present,
20 provider => "gem",
21 install_options => "--no-user-install"
22 }
23
24 file { '/usr/lib/ruby/vendor_ruby/locales/':
25 ensure => link,
26 target => "/opt/puppetlabs/puppet/share/locale/",
27 }
28 ###
29
16 unless empty(find_file($password_seed)) { 30 unless empty(find_file($password_seed)) {
17 $ldap_password = generate_password(24, $password_seed, "ldap") 31 $ldap_password = generate_password(24, $password_seed, "ldap")
18 $ssha_ldap_seed = generate_password(5, $password_seed, "ldap_seed") 32 $ssha_ldap_seed = generate_password(5, $password_seed, "ldap_seed")