diff options
Diffstat (limited to 'fuel-plugin/deployment_scripts/puppet/manifests')
-rw-r--r-- | fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp b/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp index 0ca9a8d38..5f14f1a9f 100644 --- a/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp +++ b/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp @@ -6,6 +6,14 @@ case $::operatingsystem { $kernel_kit = ["linux-headers-${version}", "linux-image-${version}"] $kernel_src = "/usr/src/linux-headers-${version}" $kernel_src_link = "/lib/modules/${version}/build" + + shellvar { 'GRUB_DEFAULT': + ensure => present, + target => '/etc/default/grub', + value => "Advanced options for Ubuntu>Ubuntu, with Linux ${version}", + quoted => 'double', + notify => Exec['update_grub'], + } } default: { fail("Unsupported operating system: ${::osfamily}/${::operatingsystem}") @@ -21,6 +29,11 @@ if $kvm_settings['use_kvm'] { $ensure_link = 'absent' } +exec { 'update_grub': + command => '/usr/sbin/update-grub', + refreshonly => true, +} + package { $kernel_kit: ensure => $ensure_pkg, before => File[$kernel_src_link], |