]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/puppet.pp
XMPP notification
[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 file { '/usr/local/sbin/puppet_apply':
43 mode => "0755",
44 ensure => present,
45 source => "puppet:///modules/base_installation/scripts/puppet_apply",
46 }
47
48 unless empty(find_file($password_seed)) {
49 $ldap_password = generate_password(24, $password_seed, "ldap")
50 $ssha_ldap_seed = generate_password(5, $password_seed, "ldap_seed")
51
52 package { 'gem:ruby-ldap':
53 name => "ruby-ldap",
54 ensure => present,
55 provider => "gem",
56 install_options => "--no-user-install"
57 }
58
59 package { 'gem:xmpp4r':
60 name => "xmpp4r",
61 ensure => present,
62 provider => "gem",
63 install_options => "--no-user-install"
64 }
65
66 file { $password_seed:
67 mode => "0600",
68 }
69
70 file { $base_installation::puppet_conf_path:
71 ensure => directory,
72 require => [Package["puppet"], Package["gem:xmpp4r"], Package["gem:ruby-ldap"]],
73 recurse => true,
74 purge => true,
75 force => true,
76 }
77
78 $xmpp = lookup("base_installation::notify_xmpp", { "default_value" => {} })
79
80 file { "$base_installation::puppet_conf_path/puppet.conf":
81 content => template("base_installation/puppet/puppet.conf.erb"),
82 require => File[$base_installation::puppet_conf_path],
83 }
84
85 unless empty($xmpp) {
86 file { "$base_installation::puppet_conf_path/xmpp.yaml":
87 content => template("base_installation/puppet/xmpp.yaml.erb"),
88 require => File[$base_installation::puppet_conf_path],
89 }
90 }
91
92 $ips = lookup("ips", { 'default_value' => undef })
93 file { "$base_installation::puppet_conf_path/host_ldap.info":
94 content => template("base_installation/puppet/host_ldap.info.erb"),
95 require => File[$base_installation::puppet_conf_path],
96 notify => Notify_refresh["notify-ldap-password"],
97 }
98
99 notify_refresh { "notify-ldap-password":
100 message => template("base_installation/puppet/host_ldap.info.erb"),
101 refreshonly => true
102 }
103 }
104 }