blob: 23902cc37a31a878f8aa2e74093cf770725589af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$fuel_settings = parseyaml(file('/etc/compute.yaml'))
if $operatingsystem == 'Ubuntu' {
if $fuel_settings['fuel-plugin-kvm']['use_kvm'] {
package { 'linux-headers-4.4.6-rt14nfv':
ensure => "1.0.OPNFV",
} ->
package { 'linux-image-4.4.6-rt14nfv':
ensure => "1.0.OPNFV",
} ->
exec {'reboot':
command => "reboot",
path => "/usr/bin:/usr/sbin:/bin:/sbin",
}
} else {
}
} elsif $operatingsystem == 'CentOS' {
}
|