diff --git a/docs/system-booting.rst b/docs/system-booting.rst index caf46303..b9631c9e 100644 --- a/docs/system-booting.rst +++ b/docs/system-booting.rst @@ -84,7 +84,7 @@ Setting up a New Partition for use as Synced ESP ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ To format and initialize a partition as synced ESP, for example, after replacing a -failed vdev in an rpool, ``proxmox-boot-tool`` from ``pve-kernel-helper`` can be used. +failed vdev in an rpool, ``proxmox-boot-tool`` from ``proxmox-kernel-helper`` can be used. WARNING: the ``format`` command will format the ````. Make sure to pass in the right device/partition! diff --git a/src/api2/node/apt.rs b/src/api2/node/apt.rs index f7328b81..8e4f150d 100644 --- a/src/api2/node/apt.rs +++ b/src/api2/node/apt.rs @@ -354,7 +354,8 @@ pub fn get_versions() -> Result, Error> { } } - let is_kernel = |name: &str| name.starts_with("pve-kernel-"); + let is_kernel = + |name: &str| name.starts_with("pve-kernel-") || name.starts_with("proxmox-kernel"); let mut packages: Vec = Vec::new(); let pbs_packages = apt::list_installed_apt_packages( diff --git a/src/bin/pbs2to3.rs b/src/bin/pbs2to3.rs index 93191fb4..a052ae3a 100644 --- a/src/bin/pbs2to3.rs +++ b/src/bin/pbs2to3.rs @@ -131,7 +131,7 @@ impl Checker { let (krunning, kinstalled) = if self.upgraded { ( Regex::new(r"^6\.(?:2\.(?:[2-9]\d+|1[6-8]|1\d\d+)|5)[^~]*$")?, - "pve-kernel-6.2", + "proxmox-kernel-6.2", ) } else { (Regex::new(r"^(?:5\.(?:13|15)|6\.2)")?, "pve-kernel-5.15")