diff --git a/manifests/hypervisor/install.pp b/manifests/hypervisor/install.pp index 091503b..71687bc 100644 --- a/manifests/hypervisor/install.pp +++ b/manifests/hypervisor/install.pp @@ -43,7 +43,10 @@ class proxmox::hypervisor::install { # Installation of the PVE Kernel if $proxmox::hypervisor::kvm_only == true { - notify { "Need to REBOOT the system on the new PVE kernel (${proxmox::hypervisor::kernel_kvm_pkg_name}) ...": } + notify { "Please REBOOT": + message => "Need to REBOOT the system on the new PVE kernel (${proxmox::hypervisor::kernel_kvm_pkg_name}) ...", + loglevel => warning, + } -> package { $proxmox::hypervisor::kernel_kvm_pkg_name: ensure => $proxmox::hypervisor::ve_pkg_ensure, @@ -51,7 +54,10 @@ class proxmox::hypervisor::install { } } else { - notify { "Need to REBOOT the system on the new PVE kernel (${proxmox::hypervisor::kernel_pkg_name}) ...": } + notify { "Please REBOOT": + message => "Need to REBOOT the system on the new PVE kernel (${proxmox::hypervisor::kernel_pkg_name}) ...", + loglevel => warning, + } -> package { $proxmox::hypervisor::kernel_pkg_name: ensure => $proxmox::hypervisor::ve_pkg_ensure,