diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-03-29 11:14:30 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-03-29 11:21:55 +0400 |
commit | e797a9f954797949f676a46f5c9ceb31874f919a (patch) | |
tree | 2ea67e5d0d69b531f2f61f6226c0b110be216bac /fuel-plugin/deployment_scripts/puppet | |
parent | 3a2eb75a5ba494161655c84a23d11eb9f6a797e9 (diff) |
[fuel-plugin] Set default grub entry for kernel
JIRA: KVMFORNFV-77
Change-Id: Ibb764cd5fa9822d337ce6f948bff8213c1caa7eb
Signed-off-by: Paul Vaduva <Paul.Vaduva@enea.com>
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'fuel-plugin/deployment_scripts/puppet')
-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], |