Update path for ISOs in /etc/grml/grml-live.conf
[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 # unless this variable is set, grml-live won't execute anything!
10 # so set it to '1' if you want to use grml-live (might be removed
11 # in the future, keep it for "security" reasons now...)
12 EXECUTE=1
13
14 # output directory of the buildprocess files (the chroot),
15 # notice that you need suid,dev,rw permissions there:
16 CHROOT_TARGET="/dev/shm/fai" # FIXME / TODO
17 # mount -o remount,suid,dev,rw /dev/shm
18
19 # where do you want to find the compressed chroot, bootstuff,...?
20 BUILD_TARGET="/dev/shm/grml_cd" # FIXME / TODO
21
22 # where do you want to find the final ISO?
23 ISO_TARGET="/dev/shm/grml_isos" # FIXME / TODO
24
25 # which architecture want to build for now?
26 ARCH="x86"
27
28 # which FAI classes do you want to use by default?
29 CLASSES="GRML,I386"
30
31 # directory of configuration files for grml-live's FAI:
32 GRML_FAI_CONFIG=/etc/grml/fai
33
34 # specify hostname of the live-system:
35 HOSTNAME=grml
36
37 # specify user with UID 1000 on live-system:
38 USERNAME=grml
39
40 # do you want to pass any additional arguments to FAI?
41 FAI_ARGS=""
42
43 # do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
44 # otherwise just take what /etc/grml/fai/apt/sources.list provides by default
45 # GRML_LIVE_SOURCES has to look like a usual /etc/apt/sources.list entry
46 #GRML_LIVE_SOURCES="
47 #deb http://192.168.1.112/debian     etch         main contrib non-free
48 #deb http://deb.grml.org/            grml-stable  main
49 #deb http://deb.grml.org/            grml-testing main
50 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
51 #"
52
53 # Which Debian flavour and which mirror do you want to use for debootstrapping?
54 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
55 # taken. If you specify a value then the file
56 # /etc/grml/fai/make-fai-nfsroot.conf will be updated by grml-live on-the-fly.
57 # usage: <flavour> <mirror>
58 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
59
60 # do you want to download pageant, plink, pscp, psftp, putty and puttygen
61 # to store it inside $BUILD_TARGET/windows/?
62 # just unset it do skip download via wget or modify URL
63 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
64
65 ## END OF FILE #################################################################