Depend on fai >=3.2, implement the suite handling for conffiles, update docs, improve...
[grml-live.git] / etc / grml / grml-live.conf
1 # Filename:      /etc/grml/grml-live.conf
2 # Purpose:       main configuration file for grml-live
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2 or any later version.
6 # Latest change: Tue Sep 18 09:31:39 CEST 2007 [mika]
7 ################################################################################
8
9 # main output directory
10 # please notice that you need suid,dev,rw permissions there
11 TARGET="/grml/grml-live"
12 # TARGET="/dev/shm" # mount -o remount,suid,dev,rw /dev/shm
13
14 # chroot of the buildprocess files:
15 CHROOT_TARGET="$TARGET/grml_chroot"
16 # where do you want to find the compressed chroot, bootstuff,...?
17 BUILD_TARGET="$TARGET/grml_cd"
18 # where do you want to find the final ISO?
19 ISO_TARGET="$TARGET/grml_isos"
20
21 # which Debian suite to you want to use? unless set it defaults to "etch"
22 # supported values: stable, testing, unstable, etch, lenny, sid
23 # SUITE="sid"
24
25 # which FAI classes do you want to use by default?
26 # notice: GRMLBASE is recommended in any case unless you *really*
27 # know what you are doing; class I386 provides the kernel
28 CLASSES="GRMLBASE,I386"
29
30 ## Which mirrors do you want to use? Please set GRML_LIVE_SOURCES *and*
31 ## *FAI_DEBOOTSTRAP* according!
32
33 # Do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
34 # If so then activate the according mirrors using GRML_LIVE_SOURCES=...
35 # If you do *not* set GRML_LIVE_SOURCES then grml-live will just take what
36 # /etc/grml/fai/apt/sources.list provides by default
37 # Usage: like your /etc/apt/sources.list looks like
38 #GRML_LIVE_SOURCES="
39 #deb http://192.168.1.112/debian     etch         main contrib non-free
40 #deb http://deb.grml.org/            grml-stable  main
41 #deb http://deb.grml.org/            grml-testing main
42 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
43 #"
44
45 # Which Debian flavour and which mirror do you want to use for basic debootstrapping?
46 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
47 # taken. If you specify a value then the file /etc/grml/fai/make-fai-nfsroot.conf
48 # will be updated by grml-live on-the-fly.
49 # Usage: <flavour> <mirror>
50 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
51
52 # directory of configuration files for grml-live's FAI:
53 GRML_FAI_CONFIG=/etc/grml/fai
54
55 # specify hostname of the live-system:
56 HOSTNAME=grml
57
58 # specify user with UID 1000 on live-system:
59 USERNAME=grml
60
61 # do you want to pass any additional arguments to FAI?
62 # FAI_ARGS=""
63
64 # which architecture do you want to build?
65 # defaults to output of 'dpkg --print-architecture'
66 # ARCH="i386"
67
68 # do you want to download pageant, plink, pscp, psftp, putty and puttygen
69 # to store it inside $BUILD_TARGET/windows/?
70 # just unset it do skip download via wget or modify URL
71 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
72
73 ## END OF FILE #################################################################