Update documentation, simplify TARGET layout, remove cfengine2 from package list...
[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: Sat Sep 15 21:56:52 CEST 2007 [mika]
7 ################################################################################
8
9 # main output directory
10 # please notice that you need suid,dev,rw permissions there
11 TARGET="/dev/shm" # FIXME / TODO
12 # 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 architecture want to build for now?
22 ARCH="x86"
23
24 # which FAI classes do you want to use by default?
25 CLASSES="GRML,I386"
26
27 # directory of configuration files for grml-live's FAI:
28 GRML_FAI_CONFIG=/etc/grml/fai
29
30 # specify hostname of the live-system:
31 HOSTNAME=grml
32
33 # specify user with UID 1000 on live-system:
34 USERNAME=grml
35
36 # do you want to pass any additional arguments to FAI?
37 FAI_ARGS=""
38
39 # do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
40 # otherwise just take what /etc/grml/fai/apt/sources.list provides by default
41 # GRML_LIVE_SOURCES has to look like a usual /etc/apt/sources.list entry
42 #GRML_LIVE_SOURCES="
43 #deb http://192.168.1.112/debian     etch         main contrib non-free
44 #deb http://deb.grml.org/            grml-stable  main
45 #deb http://deb.grml.org/            grml-testing main
46 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
47 #"
48
49 # Which Debian flavour and which mirror do you want to use for debootstrapping?
50 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
51 # taken. If you specify a value then the file
52 # /etc/grml/fai/make-fai-nfsroot.conf will be updated by grml-live on-the-fly.
53 # usage: <flavour> <mirror>
54 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
55
56 # do you want to download pageant, plink, pscp, psftp, putty and puttygen
57 # to store it inside $BUILD_TARGET/windows/?
58 # just unset it do skip download via wget or modify URL
59 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
60
61 ## END OF FILE #################################################################