diff options
author | Michal Skalski <mskalski@mirantis.com> | 2016-09-18 14:16:16 +0200 |
---|---|---|
committer | Michal Skalski <mskalski@mirantis.com> | 2016-09-18 14:30:33 +0200 |
commit | a10a10b373f17dc423800e6bb8d1a8e99450090d (patch) | |
tree | 972735bac4d8d5213f5d718f4e6e8f0a77f8aae8 /fuel-plugin/deployment_scripts | |
parent | b8f6485d5a5c66f0fce566e59b8b5891c6a7f571 (diff) |
[Fuel-plugin] Install kernel in post-deployment.
Install kernel and reboot compute nodes in post-deployment phase when
there is less chance to interfere with other tasks. Implement Michael's
suggestion to use reboot puppet module.
Change-Id: I83867e5e2752c39d2b69c950e3e475d43de04466
Signed-off-by: Michal Skalski <mskalski@mirantis.com>
Diffstat (limited to 'fuel-plugin/deployment_scripts')
-rw-r--r-- | fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp | 13 | ||||
-rw-r--r-- | fuel-plugin/deployment_scripts/puppet/modules/.gitkeep | 0 |
2 files changed, 7 insertions, 6 deletions
diff --git a/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp b/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp index a396e9472..4c04aa0a6 100644 --- a/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp +++ b/fuel-plugin/deployment_scripts/puppet/manifests/kvm-install.pp @@ -1,15 +1,16 @@ -$fuel_settings = parseyaml(file('/etc/astute.yaml')) +$kvm_settings = hiera('fuel-plugin-kvm') if $operatingsystem == 'Ubuntu' { - if $fuel_settings['fuel-plugin-kvm']['use_kvm'] { + if $kvm_settings['use_kvm'] { package { 'linux-headers-4.4.6-rt14nfv': ensure => "1.0.OPNFV", + notify => Reboot['after_run'], } -> package { 'linux-image-4.4.6-rt14nfv': ensure => "1.0.OPNFV", - } -> - exec {'reboot': - command => "reboot", - path => "/usr/bin:/usr/sbin:/bin:/sbin", + notify => Reboot['after_run'], + } + reboot { 'after_run': + apply => finished, } } else { } diff --git a/fuel-plugin/deployment_scripts/puppet/modules/.gitkeep b/fuel-plugin/deployment_scripts/puppet/modules/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/fuel-plugin/deployment_scripts/puppet/modules/.gitkeep |