X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fgrub%2Fmanifests%2Finit.pp;h=51f3f877bac247891fe82393185b12d8c08beaf4;hb=1eb059797393099ff8bbfd961718a0fd46f18379;hp=a3257977ff6dce743f7a3c8a055a828d1ac069bd;hpb=84c38329564500c0bf48e4a5330a916317ba09a3;p=mirror%2Fdsa-puppet.git diff --git a/modules/grub/manifests/init.pp b/modules/grub/manifests/init.pp index a3257977f..51f3f877b 100644 --- a/modules/grub/manifests/init.pp +++ b/modules/grub/manifests/init.pp @@ -29,7 +29,9 @@ class grub { # hp-health requires nopat on linux 4.9 $grub_do_nopat = ($::systemproductname and $::systemproductname =~ /^ProLiant/ and versioncmp($::kernelversion, '4.9') >= 0) - $grub_do_extra = $::hostname in [fasolo] + $grub_do_pti_on = ($::debarchitecture == 'amd64' and versioncmp($::lsbmajdistrelease, '9') >= 0) + + $grub_do_extra = $::hostname in [fasolo,grnet-node01,grnet-node02] file { '/etc/default/grub': # restore to default @@ -75,6 +77,12 @@ class grub { content => template('grub/puppet-kernel-extra.cfg.erb'), notify => Exec['update-grub'] } + + file { '/etc/default/grub.d/puppet-kernel-pti-on.cfg': + ensure => $grub_do_pti_on ? { true => 'present', default => 'absent' }, + content => template('grub/puppet-kernel-pti-on.cfg.erb'), + notify => Exec['update-grub'] + } } exec { 'update-grub':