]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/puppet.pp
3ca226ae404af45715fc03e74f50dcea7e5ce731
[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
86 file { "$base_installation::puppet_conf_path/puppet.conf":
87 content => template("base_installation/puppet/puppet.conf.erb"),
88 require => File[$base_installation::puppet_conf_path],
89 }
90
91 unless empty($xmpp) {
92 file { "$base_installation::puppet_conf_path/xmpp.yaml":
93 content => template("base_installation/puppet/xmpp.yaml.erb"),
94 require => File[$base_installation::puppet_conf_path],
95 }
96 }
97
98 if file("$base_installation::puppet_conf_path/host_ldap.info", "/dev/null") != "" and
99 empty($facts["ldapvar"]) {
100 fail("LDAP was activated but facts are not available")
101 }
102
103 $ips = lookup("ips", { 'default_value' => undef })
104 file { "$base_installation::puppet_conf_path/host_ldap.info":
105 content => template("base_installation/puppet/host_ldap.info.erb"),
106 require => File[$base_installation::puppet_conf_path],
107 notify => Notify_refresh["notify-ldap-password"],
108 }
109
110 notify_refresh { "notify-ldap-password":
111 message => template("base_installation/puppet/host_ldap.info.erb"),
112 refreshonly => true
113 }
114 }
115 }