| 1 |
# $Id$
|
| 2 |
|
| 3 |
# /etc/fai.conf -- configuration for FAI (Fully Automatic Installation)
|
| 4 |
#
|
| 5 |
# this is the configuration for FAI package on the
|
| 6 |
# server. Configuration for the install clients are located elsewhere
|
| 7 |
|
| 8 |
FAI_ARCH=`dpkg --print-installation-architecture`
|
| 9 |
|
| 10 |
# location of base?_?.tgz for nfsroot on server (not for the install clients)
|
| 11 |
#
|
| 12 |
BASETGZ=ftp://ftp.debian.org/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz
|
| 13 |
# basetgz in a mounted directory
|
| 14 |
#BASETGZ=/mnt/debian/dists/stable/main/disks-$FAI_ARCH/current/base?_?.tgz
|
| 15 |
|
| 16 |
# the root password on install clients during installation process is: fai
|
| 17 |
#
|
| 18 |
ROOTPW="56hNVqht51tzc"
|
| 19 |
|
| 20 |
# location of a .ssh/.identity.pub; this user can log in as root
|
| 21 |
# without password ; only usefull with FAI_FLAGS="sshd"
|
| 22 |
#
|
| 23 |
#SSH_IDENTITY=/home/admin/.ssh/identity.pub
|
| 24 |
|
| 25 |
# additional packages, that will be installed into nfsroot
|
| 26 |
#
|
| 27 |
NFSROOT_PACKAGES=
|
| 28 |
|
| 29 |
#
|
| 30 |
#
|
| 31 |
KERNELVERSION=2.2.17
|
| 32 |
|
| 33 |
# this kernel package will be installed to NFSROOT
|
| 34 |
#
|
| 35 |
KERNELPACKAGE=/usr/lib/fai/kernel/kernel-image-2.2.17_BOOTP1_i386.deb
|
| 36 |
|
| 37 |
# FAI_LOGUSER: account on TFTP server, which saves all log-files and
|
| 38 |
# which can change the kernel that is booted via network. Configure
|
| 39 |
# .rhosts for this account, so the user root can login from all
|
| 40 |
# install clients without password. This account should have write
|
| 41 |
# permissions for /boot/fai, for eg. you can use write permissions for
|
| 42 |
# the group linuxadm. chgrp linuxadm /boot/fai;chmod g+w /boot/fai
|
| 43 |
# if the variable is undefined, this feature is disabled
|
| 44 |
#
|
| 45 |
LOGUSER=fai
|
| 46 |
|
| 47 |
# a constant
|
| 48 |
LIBFAI=/usr/lib/fai
|
| 49 |
|
| 50 |
# directory, where the nfsroot for FAI is created
|
| 51 |
# approx size: 100MB
|
| 52 |
#
|
| 53 |
NFSROOT=$LIBFAI/nfsroot
|