2015-01-08 23:02:50 +01:00
|
|
|
# == Class: proxmox::hypervisor::install
|
|
|
|
#
|
|
|
|
# Install Proxmox and reboot the system on the PVE kernel
|
|
|
|
#
|
|
|
|
class proxmox::hypervisor::install {
|
|
|
|
|
|
|
|
Exec {
|
|
|
|
path => [ '/bin', '/sbin', '/usr/bin', '/usr/sbin' ],
|
|
|
|
logoutput => 'on_failure',
|
|
|
|
}
|
|
|
|
|
|
|
|
# If the system run on a standard Debian Kernel
|
|
|
|
if $::kernelrelease == '3.2.0-4-amd64' {
|
|
|
|
# To avoid unwanted reboot (kernel update for example), the PVE kernel is
|
|
|
|
# installed only if the system run on a standard Debian.
|
|
|
|
# You will need to update your PVE kernel manually.
|
|
|
|
|
|
|
|
# Installation of the PVE Kernel
|
|
|
|
if $proxmox::hypervisor::kvm_only == true {
|
|
|
|
notify { "Need to install a PVE kernel (${proxmox::hypervisor::kernel_kvm_pkg_name}) and reboot the system to run it ...": }
|
|
|
|
->
|
|
|
|
package { $proxmox::hypervisor::kernel_kvm_pkg_name:
|
2015-02-03 16:56:39 +01:00
|
|
|
ensure => $proxmox::hypervisor::ve_pkg_ensure,
|
|
|
|
notify => Exec['update_grub','reboot_to_pve'],
|
2015-01-08 23:02:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
notify { "Need to install a PVE kernel (${proxmox::hypervisor::kernel_pkg_name}) and reboot the system to run it ...": }
|
|
|
|
->
|
|
|
|
package { $proxmox::hypervisor::kernel_pkg_name:
|
2015-02-03 16:56:39 +01:00
|
|
|
ensure => $proxmox::hypervisor::ve_pkg_ensure,
|
|
|
|
notify => Exec['update_grub','grub_reboot'],
|
2015-01-08 23:02:50 +01:00
|
|
|
}
|
|
|
|
# The kernel that allow KVM + OpenVZ is older than the standard Debian's
|
|
|
|
# kernel, so grub reboot must be used
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { # If the system already run a PVE kernel
|
|
|
|
|
|
|
|
# Installation of Virtual Environnment
|
|
|
|
package { $proxmox::hypervisor::ve_pkg_name:
|
2015-02-03 16:56:39 +01:00
|
|
|
ensure => $proxmox::hypervisor::ve_pkg_ensure,
|
2015-01-08 23:02:50 +01:00
|
|
|
} ->
|
|
|
|
|
|
|
|
# Remove useless packages (such as the standard kernel, acpid, ...)
|
|
|
|
package { $proxmox::hypervisor::old_pkg_name:
|
2015-02-03 16:56:39 +01:00
|
|
|
ensure => $proxmox::hypervisor::old_pkg_ensure,
|
2015-01-09 00:30:15 +01:00
|
|
|
notify => Exec['update_grub'],
|
2015-01-08 23:02:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Ensure that some recommended packages are present on the system
|
|
|
|
# come from Proxmox and standard Debian repository
|
2015-03-18 10:50:03 +01:00
|
|
|
## The variable needs double quote to take the array
|
2015-01-08 23:02:50 +01:00
|
|
|
if ! defined(Package["${proxmox::hypervisor::rec_pkg_name}"]) {
|
|
|
|
package { $proxmox::hypervisor::rec_pkg_name:
|
2015-02-03 16:56:39 +01:00
|
|
|
ensure => $proxmox::hypervisor::ve_pkg_ensure,
|
2015-01-08 23:02:50 +01:00
|
|
|
}
|
|
|
|
} else {
|
2015-02-03 16:56:39 +01:00
|
|
|
notice("Warn: can't manage ${proxmox::hypervisor::rec_pkg_name}.")
|
2015-01-08 23:02:50 +01:00
|
|
|
}
|
|
|
|
|
2015-02-03 16:56:39 +01:00
|
|
|
}
|
2015-01-08 23:02:50 +01:00
|
|
|
|
|
|
|
# Ensure the grub is update
|
|
|
|
exec { 'update_grub':
|
2015-02-03 16:56:39 +01:00
|
|
|
command => 'update-grub',
|
2015-01-08 23:02:50 +01:00
|
|
|
refreshonly => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Choose a different line in the grub
|
|
|
|
exec { 'grub_reboot':
|
2015-02-03 16:56:39 +01:00
|
|
|
command => 'grub-reboot 2',
|
2015-01-08 23:02:50 +01:00
|
|
|
refreshonly => true,
|
|
|
|
notify => Exec['reboot_to_pve'],
|
|
|
|
}
|
|
|
|
|
|
|
|
# Reboot on a PVE Kernel
|
|
|
|
exec { 'reboot_to_pve':
|
2015-02-03 16:56:39 +01:00
|
|
|
command => 'shutdown -r 1',
|
2015-01-08 23:02:50 +01:00
|
|
|
refreshonly => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} # Private class: proxmox::hypervisor::install
|