2c0ee0049c30886171c9fdaaca7d6d690513f21e
[mirror/dsa-puppet.git] / modules / grub / manifests / init.pp
1 class grub {
2         $grub_do_ifnames = ($::kernel == 'Linux' and $::is_virtual and $::virtual == 'kvm')
3
4         if ($::kernel == 'Linux' and $::is_virtual and $::virtual == 'kvm') {
5                 $grub_manage = true
6                 $grub_do_kernel_serial = true
7                 $grub_do_grub_serial = true
8         } elsif $::hostname in [ubc-enc2bl01,ubc-enc2bl02,ubc-enc2bl09,ubc-enc2bl10,casulana,mirror-anu,sallinen,storace,mirror-accumu,bm-bl1,bm-bl2,bm-bl3,bm-bl4,bm-bl5,bm-bl6,bm-bl7,bm-bl8,bm-bl9,bm-bl10,bm-bl11,bm-bl12,bm-bl13,bm-bl14] {
9                 $grub_manage = true
10                 $grub_do_kernel_serial = true
11                 $grub_do_grub_serial = true
12         } elsif $::hostname in [mirror-skroutz,aagaard,conova-node02,arm-arm-01,fasolo] {
13                 $grub_manage = true
14                 $grub_do_kernel_serial = true
15                 $grub_do_grub_serial = true
16         } elsif $::hostname in [arm-arm-03] {
17                 $grub_manage = true
18                 $grub_do_kernel_serial = true
19                 $grub_do_grub_serial = false
20         } elsif $::hostname in [villa,mirror-isc] {
21                 $grub_manage = true
22                 $grub_do_kernel_serial = false
23                 $grub_do_grub_serial = false
24         } else {
25                 $grub_manage = false
26         }
27
28         if $grub_manage {
29                 # hp-health requires nopat on linux 4.9
30                 $grub_do_nopat = ($::systemproductname and $::systemproductname =~ /^ProLiant/ and versioncmp($::kernelversion, '4.9') >= 0)
31
32                 $grub_do_extra = $::hostname in [fasolo]
33
34                 file { '/etc/default/grub':
35                         # restore to default
36                         source => 'puppet:///modules/grub/etc-default-grub',
37                         notify  => Exec['update-grub']
38                 }
39
40                 file { '/etc/default/grub.d':
41                         ensure => directory,
42                         mode   => '0555',
43                         purge   => true,
44                         force   => true,
45                         recurse => true,
46                         source  => 'puppet:///files/empty/',
47                 }
48
49                 file { '/etc/default/grub.d/puppet-grub-serial.cfg':
50                         ensure => $grub_do_kernel_serial ? { true  => 'present', default => 'absent' },
51                         content  => template('grub/puppet-grub-serial.cfg.erb'),
52                         notify  => Exec['update-grub']
53                 }
54
55                 file { '/etc/default/grub.d/puppet-kernel-serial.cfg':
56                         ensure => $grub_do_grub_serial ? { true  => 'present', default => 'absent' },
57                         content  => template('grub/puppet-kernel-serial.cfg.erb'),
58                         notify  => Exec['update-grub']
59                 }
60
61                 file { '/etc/default/grub.d/puppet-net-ifnames.cfg':
62                         ensure => $grub_do_ifnames ? { true  => 'present', default => 'absent' },
63                         content  => template('grub/puppet-net-ifnames.cfg.erb'),
64                         notify  => Exec['update-grub']
65                 }
66
67                 file { '/etc/default/grub.d/puppet-kernel-nopat.cfg':
68                         ensure => $grub_do_nopat ? { true  => 'present', default => 'absent' },
69                         content  => template('grub/puppet-kernel-nopat.cfg.erb'),
70                         notify  => Exec['update-grub']
71                 }
72
73                 file { '/etc/default/grub.d/puppet-kernel-extra.cfg':
74                         ensure => $grub_do_extra ? { true  => 'present', default => 'absent' },
75                         content  => template('grub/puppet-kernel-extra.cfg.erb'),
76                         notify  => Exec['update-grub']
77                 }
78         }
79
80         exec { 'update-grub':
81                 refreshonly => true,
82                 path        => '/usr/bin:/usr/sbin:/bin:/sbin',
83         }
84 }