diff --git a/CHANGELOG.md b/CHANGELOG.md index f565a65..d66f4bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ##### Changes * Some installation's instructions only run if running a PVE kernel (test the new is_pve_kernel fact). * Use the stdlib function 'ensure_packages' to install recommended packages instead of 'if ! defined'. +* Upgrade pve-kernel-3.10.0-9-pve and pve-kernel-2.6.32-39 to the last version. ##### Bugfixes * #14 The module no longer automatically reboot nodes after kernel upgrade, show a warning message instead. diff --git a/README.md b/README.md index 6ec431b..20d132c 100644 --- a/README.md +++ b/README.md @@ -193,8 +193,8 @@ proxmox::hypervisor::user { 'marvin': * `ve_pkg_ensure`: What to set the Virtual Environnment package to. Can be 'present', 'absent' or 'version'. Defaults to 'present'. * `ve_pkg_name`: The list of VirtualEnvironnment packages. Can be an array [ 'proxmox-ve-2.6.32', 'ksm-control-daemon', 'vzprocps', 'open-iscsi', 'bootlogd', 'pve-firmware' ]. * `kvm_only`: If set to 'true', Puppet will install a newer kernel compatible only with KVM. Accepts 'true' or 'false'. Defaults to 'false'. -* `kernel_kvm_pkg_name`: The list of packages to install the newer kernel. Can be an array [ 'pve-kernel-3.10.0-5-pve', '...' ]. -* `kernel_pkg_name`: The list of packages to install a kernel compatible with both KVM and OpenVZ. Can be an array [ 'pve-kernel-2.6.32-34-pve', '...' ]. +* `kernel_kvm_pkg_name`: The list of packages to install the newer kernel. Can be an array [ 'pve-kernel-3.10.0-9-pve', '...' ]. +* `kernel_pkg_name`: The list of packages to install a kernel compatible with both KVM and OpenVZ. Can be an array [ 'pve-kernel-2.6.32-39-pve', '...' ]. * `rec_pkg_name`: The list of recommended and usefull packages for Proxmox. Can be an array [ 'ntp', 'ssh', 'lvm2', 'bridge-utils' ]. * `old_pkg_ensure`: What to set useless packages (non recommended, previous kernel, ...). Can be 'present' or 'absent'. Defaults to 'absent'. * `old_pkg_name`: The list of useless packages. Can be an array [ 'acpid', 'linux-image-amd64', 'linux-base', 'linux-image-3.2.0-4-amd64' ]. diff --git a/manifests/params.pp b/manifests/params.pp index 4751f8f..45dd82c 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -10,8 +10,8 @@ class proxmox::params { # PVE Kernel $kvm_only = false - $kernel_kvm_pkg_name = [ 'pve-kernel-3.10.0-8-pve' ] - $kernel_pkg_name = [ 'pve-kernel-2.6.32-37' ] + $kernel_kvm_pkg_name = [ 'pve-kernel-3.10.0-9-pve' ] + $kernel_pkg_name = [ 'pve-kernel-2.6.32-39' ] # Recommended packages $rec_pkg_name = [ 'ntp', 'ssh', 'lvm2', 'bridge-utils' ]