Fix usage of GRML_LIVE_SOURCES
[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 17:02:32 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
11 EXECUTE=1
12
13 # output directory of the buildprocess files (the chroot),
14 # notice that you need suid,dev,rw permissions there:
15 TARGET="/dev/shm/fai" # FIXME / TODO
16 # mount -o remount,suid,dev,rw /dev/shm
17
18 # which FAI classes do you want to use by default?
19 CLASSES="GRML"
20
21 # directory of configuration files for FAI:
22 FAI_CONFIG=/etc/grml/fai
23
24 # specify hostname of the live-system:
25 HOSTNAME=grml
26
27 # specify user with UID 1000 on live-system:
28 USERNAME=grml
29
30 # do you want to pass any additional arguments to FAI?
31 FAI_ARGS=""
32
33 # do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
34 # otherwise just take what /etc/grml/fai/apt/sources.list provides by default
35 # GRML_LIVE_SOURCES has to look like a usual /etc/apt/sources.list entry
36 #GRML_LIVE_SOURCES="
37 #deb http://192.168.1.112/debian     etch         main contrib non-free
38 #deb http://deb.grml.org/            grml-stable  main
39 #deb http://deb.grml.org/            grml-testing main
40 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
41 #"
42
43 # Which Debian flavour and which mirror do you want to use for debootstrapping?
44 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
45 # taken. If you specify a value then the file
46 # /etc/grml/fai/make-fai-nfsroot.conf will be updated by grml-live on-the-fly.
47 # usage: <flavour> <mirror>
48 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
49
50
51 ## END OF FILE #################################################################