update upstream to 9084a3cbc0a55422beea4a55b530c1f03a910617 feb 2024
[automated-distro-installer] / fai / config / class / DEBIAN.var
1 release=bookworm
2 apt_cdn=http://deb.debian.org
3 security_cdn=http://security.debian.org
4
5 # since bullseye Debian changed the suite name for security
6 if [ $release = buster ]; then
7 secsuite=buster/updates
8 else
9 secsuite=$release-security
10 fi
11
12 CONSOLEFONT=
13 KEYMAP=us-latin1
14
15 # MODULESLIST contains modules that will be loaded by the new system,
16 # not during installation these modules will be written to /etc/modules
17 # If you need a module during installation, add it to $kernelmodules
18 # in 20-hwdetect.sh.
19 MODULESLIST="usbhid psmouse"
20
21 # if you have enough RAM (>2GB) you may want to enable this line. It
22 # also puts /var/cache into a ramdisk.
23 #FAI_RAMDISKS="$target/var/lib/dpkg $target/var/cache"
24
25 # if you want to use the faiserver as APT proxy
26 #APTPROXY=http://faiserver:3142
27
28
29 # The linux-image package has different names for Debian and Ubuntu
30 if ifclass UBUNTU; then
31 kernelname=linux-image-generic
32 elif ifclass I386; then
33 kernelname=linux-image-686-pae
34 elif ifclass AMD64; then
35 kernelname=linux-image-amd64
36 fi
37
38 if [ -z "kernelname" ]; then
39 _arch=$(dpkg --print-architecture 2>/dev/null)
40 case $_arch in
41 i386)
42 kernelname=linux-image-686-pae ;;
43 *)
44 kernelname=linux-image-$_arch
45 esac
46 unset _arch
47 fi