]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/puppet.pp
10b3773041bd7b54356243546340eb76f2c1f05c
[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_lock':
31 mode => "0755",
32 ensure => present,
33 source => "puppet:///modules/base_installation/scripts/puppet_lock"
34 }
35
36 file { '/usr/local/sbin/i_puppet_reset_and_apply':
37 mode => "0755",
38 ensure => present,
39 source => "puppet:///modules/base_installation/scripts/puppet_reset_and_apply"
40 }
41
42 file { '/usr/local/sbin/i_puppet_report_print':
43 mode => "0755",
44 ensure => present,
45 source => "puppet:///modules/base_installation/scripts/report_print.rb"
46 }
47
48 file { '/usr/local/sbin/puppet_apply':
49 mode => "0755",
50 ensure => present,
51 source => "puppet:///modules/base_installation/scripts/puppet_apply",
52 }
53
54 unless empty(find_file($password_seed)) {
55 $ldap_password = generate_password(24, $password_seed, "ldap")
56 $ssha_ldap_seed = generate_password(5, $password_seed, "ldap_seed")
57
58 package { 'gem:ruby-ldap':
59 name => "ruby-ldap",
60 ensure => present,
61 provider => "gem",
62 install_options => "--no-user-install"
63 }
64
65 package { 'gem:xmpp4r':
66 name => "xmpp4r",
67 ensure => present,
68 provider => "gem",
69 install_options => "--no-user-install"
70 }
71
72 file { $password_seed:
73 mode => "0600",
74 }
75
76 file { $base_installation::puppet_conf_path:
77 ensure => directory,
78 require => [Package["puppet"], Package["gem:xmpp4r"], Package["gem:ruby-ldap"]],
79 recurse => true,
80 purge => true,
81 force => true,
82 }
83
84 $xmpp = lookup("base_installation::notify_xmpp", { "default_value" => {} })
85 $slack = lookup("base_installation::notify_slack", { "default_value" => {} })
86
87 file { "$base_installation::puppet_conf_path/puppet.conf":
88 content => template("base_installation/puppet/puppet.conf.erb"),
89 require => File[$base_installation::puppet_conf_path],
90 }
91
92 unless empty($xmpp) {
93 file { "$base_installation::puppet_conf_path/xmpp.yaml":
94 content => template("base_installation/puppet/xmpp.yaml.erb"),
95 require => File[$base_installation::puppet_conf_path],
96 }
97 }
98
99 unless empty($slack) {
100 file { "$base_installation::puppet_conf_path/slack.yaml":
101 content => template("base_installation/puppet/slack.yaml.erb"),
102 require => File[$base_installation::puppet_conf_path],
103 }
104 }
105
106 if file("$base_installation::puppet_conf_path/host_ldap.info", "/dev/null") != "" and
107 empty($facts["ldapvar"]) {
108 fail("LDAP was activated but facts are not available")
109 }
110
111 $ips = lookup("ips", { 'default_value' => undef })
112 concat { "$base_installation::puppet_conf_path/host_ldap.info":
113 ensure => "present",
114 mode => "0600",
115 require => File[$base_installation::puppet_conf_path],
116 notify => Notify_refresh["notify-ldap-password"],
117 ensure_newline => true,
118 }
119
120 concat::fragment { "host_ldap add top":
121 target => "$base_installation::puppet_conf_path/host_ldap.info",
122 content => template("base_installation/puppet/host_ldap_add_top.info.erb"),
123 order => "00-01",
124 }
125 concat::fragment { "host_ldap add bottom":
126 target => "$base_installation::puppet_conf_path/host_ldap.info",
127 content => "EOF",
128 order => "00-99",
129 }
130
131 concat::fragment { "host_ldap mod top":
132 target => "$base_installation::puppet_conf_path/host_ldap.info",
133 content => template("base_installation/puppet/host_ldap_mod_top.info.erb"),
134 order => "01-01",
135 }
136 concat::fragment { "host_ldap mod bottom":
137 target => "$base_installation::puppet_conf_path/host_ldap.info",
138 content => "EOF",
139 order => "01-99",
140 }
141
142 notify_refresh { "notify-ldap-password":
143 message => template("base_installation/puppet/host_ldap.info.erb"),
144 refreshonly => true
145 }
146 }
147 }