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