]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/puppet.pp
b3ce49207a67007266df1ba5ca1b1883c76015ff
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / puppet.pp
1 class base_installation::puppet (
2 $password_seed = $base_installation::puppet_pass_seed
3 ) inherits base_installation {
4 File {
5 mode => "0600",
6 owner => "root",
7 group => "root",
8 }
9
10 exec { 'generate_password_seed':
11 command => "/usr/bin/openssl rand -base64 -out $password_seed 256",
12 creates => $password_seed,
13 environment => "RANDFILE=/dev/null",
14 }
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
30 file { '/usr/local/sbin/i_puppet_reset_and_apply':
31 mode => "0755",
32 ensure => present,
33 source => "puppet:///modules/base_installation/scripts/puppet_reset_and_apply"
34 }
35
36 file { '/usr/local/sbin/i_puppet_report_print':
37 mode => "0755",
38 ensure => present,
39 source => "puppet:///modules/base_installation/scripts/report_print.rb"
40 }
41
42 unless empty(find_file($password_seed)) {
43 $ldap_password = generate_password(24, $password_seed, "ldap")
44 $ssha_ldap_seed = generate_password(5, $password_seed, "ldap_seed")
45
46 package { 'gem:ruby-ldap':
47 name => "ruby-ldap",
48 ensure => present,
49 provider => "gem",
50 install_options => "--no-user-install"
51 }
52
53 file { $password_seed:
54 mode => "0600",
55 }
56
57 file { $base_installation::puppet_conf_path:
58 ensure => directory,
59 require => [Package["puppet"], Package["gem:ruby-ldap"]],
60 recurse => true,
61 purge => true,
62 force => true,
63 }
64
65 file { "$base_installation::puppet_conf_path/puppet.conf":
66 content => template("base_installation/puppet/puppet.conf.erb"),
67 require => File[$base_installation::puppet_conf_path],
68 }
69
70 $ips = lookup("ips") |$key| { {} }
71 file { "$base_installation::puppet_conf_path/host_ldap.info":
72 content => template("base_installation/puppet/host_ldap.info.erb"),
73 require => File[$base_installation::puppet_conf_path],
74 notify => Notify_refresh["notify-ldap-password"],
75 }
76
77 notify_refresh { "notify-ldap-password":
78 message => template("base_installation/puppet/host_ldap.info.erb"),
79 refreshonly => true
80 }
81 }
82 }