update upstream to 9084a3cbc0a55422beea4a55b530c1f03a910617 feb 2024
[automated-distro-installer] / fai / config / class / DEBIAN.var
index 8f00bb917517969e35dcfc9dfdf28a0ea3d5155b..492d9950ab2fd4be399e9c302fdaec84fadbf8be 100644 (file)
@@ -1,3 +1,14 @@
+release=bookworm
+apt_cdn=http://deb.debian.org
+security_cdn=http://security.debian.org
+
+# since bullseye Debian changed the suite name for security
+if [ $release = buster ]; then
+  secsuite=buster/updates
+else
+  secsuite=$release-security
+fi
+
 CONSOLEFONT=
 KEYMAP=us-latin1
 
@@ -14,4 +25,23 @@ MODULESLIST="usbhid psmouse"
 # if you want to use the faiserver as APT proxy
 #APTPROXY=http://faiserver:3142
 
-apt_cdn=http://deb.debian.org
+
+# The linux-image package has different names for Debian and Ubuntu
+if ifclass UBUNTU; then
+    kernelname=linux-image-generic
+elif ifclass I386; then
+   kernelname=linux-image-686-pae
+elif ifclass AMD64; then
+   kernelname=linux-image-amd64
+fi
+
+if [ -z "kernelname" ]; then
+    _arch=$(dpkg --print-architecture 2>/dev/null)
+    case $_arch in
+        i386)
+            kernelname=linux-image-686-pae ;;
+        *)
+            kernelname=linux-image-$_arch
+    esac
+    unset _arch
+fi