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