| 1 |
# $Id$
|
| 2 |
|
| 3 |
# /etc/fai.conf -- configuration for FAI (Fully Automatic Installation)
|
| 4 |
#
|
| 5 |
# this is the configuration for FAI package.
|
| 6 |
|
| 7 |
FAI_ARCH=`dpkg --print-installation-architecture`
|
| 8 |
|
| 9 |
# location of Debian software packages for install clients during isntallation
|
| 10 |
# FAI_SOURCES_LIST can contain more than one line
|
| 11 |
|
| 12 |
# via nfs mounted directory
|
| 13 |
# if FAI_PACKAGEDIR is defined, it will be mounted to /tmp
|
| 14 |
FAI_PACKAGEDIR=frueh:/files/scratch/debian-mirror
|
| 15 |
# FAI_BASETGZ is relativ to /mnt
|
| 16 |
FAI_BASETGZ=/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz
|
| 17 |
FAI_SOURCES_LIST="deb file:/mnt/debian stable main contrib non-free
|
| 18 |
deb file:/mnt/debian-non-US stable/non-US main contrib non-free"
|
| 19 |
|
| 20 |
# via ftp
|
| 21 |
#ftpserver=ftp.debian.org
|
| 22 |
#FAI_BASETGZ="ftp://$ftpserver/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz"
|
| 23 |
#FAI_SOURCES_LIST="deb ftp://$ftpserver/debian/ stable main contrib non-free
|
| 24 |
#deb ftp://$ftpserver/debian/ dists/proposed-updates
|
| 25 |
#deb ftp://non-us.debian.org/debian-non-US stable/non-US main contrib non-free"
|
| 26 |
|
| 27 |
|
| 28 |
# the location of base?_?.tgz for creating the nfsroot on the server
|
| 29 |
# if FAI_BASETGZ is available via ftp/http you can do this
|
| 30 |
#BASETGZ=$FAI_BASETGZ
|
| 31 |
# via ftp, but diffrent from FAI_BASETGZ
|
| 32 |
#BASETGZ=ftp://ftp.debian.org/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz
|
| 33 |
# in an already mounted directory
|
| 34 |
#BASETGZ=/mnt/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz
|
| 35 |
|
| 36 |
# the root password on install clients during installation process is: fai
|
| 37 |
#
|
| 38 |
ROOTPW="56hNVqht51tzc"
|
| 39 |
|
| 40 |
# location of a .ssh/.identity.pub; this user can log in as root
|
| 41 |
# without password ; only usefull with FAI_FLAGS="sshd"
|
| 42 |
#
|
| 43 |
#SSH_IDENTITY=/home/admin/.ssh/identity.pub
|
| 44 |
|
| 45 |
# additional packages, that will be installed into nfsroot
|
| 46 |
#
|
| 47 |
NFSROOT_PACKAGES=
|
| 48 |
|
| 49 |
# version of the default kernel
|
| 50 |
KERNELVERSION=2.2.17
|
| 51 |
|
| 52 |
# this kernel package will be installed to nfsroot, default kernel for
|
| 53 |
# booting install clients
|
| 54 |
KERNELPACKAGE=/usr/lib/fai/kernel/kernel-image-2.2.17_BOOTP1_i386.deb
|
| 55 |
|
| 56 |
# FAI_LOGUSER: account on TFTP server, which saves all log-files and
|
| 57 |
# which can change the kernel that is booted via network. Configure
|
| 58 |
# .rhosts for this account, so the user root can login from all
|
| 59 |
# install clients without password. This account should have write
|
| 60 |
# permissions for /boot/fai, for eg. you can use write permissions for
|
| 61 |
# the group linuxadm. chgrp linuxadm /boot/fai;chmod g+w /boot/fai
|
| 62 |
# if the variable is undefined, this feature is disabled
|
| 63 |
#
|
| 64 |
LOGUSER=fai
|
| 65 |
|
| 66 |
# a constant
|
| 67 |
LIBFAI=/usr/lib/fai
|
| 68 |
|
| 69 |
# directory, where the nfsroot for FAI is created
|
| 70 |
# approx size: less than 100MB
|
| 71 |
#
|
| 72 |
NFSROOT=$LIBFAI/nfsroot
|