]> git.proxmox.com Git - proxmox-ve.git/commitdiff
bump version to 6.2-1
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 6 May 2020 08:22:25 +0000 (10:22 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 6 May 2020 08:22:25 +0000 (10:22 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
debian/changelog
debian/control
debian/postinst

index 9016473a097c7fa7602b419215c021ddfa2495d5..ab247bda825a8edb728f996d9467e8ddb71a8c54 100644 (file)
@@ -1,3 +1,9 @@
+proxmox-ve (6.2-1) pve; urgency=medium
+
+  * depend on Linux LTS Kernel 5.4 by default
+
+ -- Proxmox Support Team <support@proxmox.com>  Wed, 06 May 2020 10:22:11 +0200
+
 proxmox-ve (6.1-2) pve; urgency=medium
 
   * ensure rescue kernel links point over to new 5.3 kernel
index 0e606d171c8b23d752a2abd768fe5e8471d99b0e..47d300ddc402344e66760c9f1981cb2133a10560 100644 (file)
@@ -17,7 +17,7 @@ Replaces: proxmox-ve-3.10.0,
 Depends: apt,
          openssh-client,
          openssh-server,
-         pve-kernel-5.3,
+         pve-kernel-5.4,
          pve-kernel-helper,
          pve-manager,
          pve-qemu-kvm,
@@ -32,7 +32,7 @@ Description: Proxmox Virtual Environment
 
 Package: pve-headers
 Architecture: all
-Depends: pve-headers-5.3,
+Depends: pve-headers-5.4,
 Description: Default Proxmox VE Kernel Headers
  This is a metapackage which will install the kernel headers for the
  current default kernel.
index a0d88f69000e894ad049594ee0193293072bcaab..fe9760878374650dd4dae5fc709dee2a21b94083 100755 (executable)
@@ -7,8 +7,8 @@ case "$1" in
   configure)
     # setup kernel links for installation CD (rescue boot)
     mkdir -p /boot/pve
-    ln -sf /boot/pve/vmlinuz-5.3 /boot/pve/vmlinuz
-    ln -sf /boot/pve/initrd.img-5.3 /boot/pve/initrd.img
+    ln -sf /boot/pve/vmlinuz-5.4 /boot/pve/vmlinuz
+    ln -sf /boot/pve/initrd.img-5.4 /boot/pve/initrd.img
     ;;
 esac