a71391b0bbcdf5f4c8540ee52e55a4823de6b3a1
[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 architecture want to build for now?
22 # defaults to output of 'dpkg --print-architecture'
23 # ARCH="i386"
24
25 # which Debian suite to you want to use?
26 # unless set it defaults to "etch"
27 # support values: stable, testing, unstable, etch, lenny, sid
28 # SUITE="sid"
29
30 # which FAI classes do you want to use by default?
31 # notice: GRMLBASE is recommended in any case unless you
32 # *really* know what you are doing
33 CLASSES="GRMLBASE,I386"
34
35 # directory of configuration files for grml-live's FAI:
36 GRML_FAI_CONFIG=/etc/grml/fai
37
38 # specify hostname of the live-system:
39 HOSTNAME=grml
40
41 # specify user with UID 1000 on live-system:
42 USERNAME=grml
43
44 # do you want to pass any additional arguments to FAI?
45 FAI_ARGS=""
46
47 # do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
48 # otherwise just take what /etc/grml/fai/apt/sources.list provides by default
49 # GRML_LIVE_SOURCES has to look like a usual /etc/apt/sources.list entry
50 #GRML_LIVE_SOURCES="
51 #deb http://192.168.1.112/debian     etch         main contrib non-free
52 #deb http://deb.grml.org/            grml-stable  main
53 #deb http://deb.grml.org/            grml-testing main
54 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
55 #"
56
57 # Which Debian flavour and which mirror do you want to use for debootstrapping?
58 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
59 # taken. If you specify a value then the file
60 # /etc/grml/fai/make-fai-nfsroot.conf will be updated by grml-live on-the-fly.
61 # usage: <flavour> <mirror>
62 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
63
64 # do you want to download pageant, plink, pscp, psftp, putty and puttygen
65 # to store it inside $BUILD_TARGET/windows/?
66 # just unset it do skip download via wget or modify URL
67 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
68
69 ## END OF FILE #################################################################