Log to /var/log/grml-live.log by default and support $ZERO_LOGFILE
[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 Oct 28 14:43:46 CET 2007 [mika]
7 ################################################################################
8
9 # Main output directory
10 # Please notice that you need suid,dev,rw permissions there
11 OUTPUT="/grml/grml-live"
12 # You have enough RAM? Use shared memory for fast testing purposes:
13 # OUTPUT="/dev/shm" # mount -o remount,suid,dev,rw /dev/shm
14
15 # Where do want to find the chroot of the buildprocess files?
16 CHROOT_OUTPUT="$OUTPUT/grml_chroot"
17 # Where do you want to find the compressed chroot, bootstuff,...?
18 BUILD_OUTPUT="$OUTPUT/grml_cd"
19 # Where do you want to find the final ISO?
20 ISO_OUTPUT="$OUTPUT/grml_isos"
21
22 # Do you want to zero / clean up the logfile on each grml-live execution?
23 # Especially useful if you are using an autobuild setup where you want
24 # store /var/log/grml-live.log after each invocation of grml-live.
25 # Default: unset (so do not zero the logfile)
26 #ZERO_LOGFILE='1'
27
28 # Which Debian suite to you want to use? Unless it is set it defaults to "etch"
29 # Supported values are: etch, lenny, sid
30 # SUITE="sid"
31
32 # Which FAI classes do you want to use by default?#
33
34 # Notice: GRMLBASE is recommended in any case unless you *really* know what you
35 # are doing; make sure to also use a GRML_* class (for example GRML_SMALL,
36 # GRML_MEDIUM or GRML_FULL) to get an according kernel and also select the
37 # architecture (I386 for x86; AMD64 for x86_64)
38 CLASSES="GRMLBASE,GRML_MEDIUM,I386"
39
40 ## Which mirrors do you want to use? Please set GRML_LIVE_SOURCES *and*
41 ## *FAI_DEBOOTSTRAP* accordingly. To use a local directory (like an NFS mount)
42 ## check out MIRROR_DIRECTORY and MIRROR_SOURCES as well.
43
44 # Do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
45 # If so then activate the according mirrors using GRML_LIVE_SOURCES=...
46 # If you do *not* set GRML_LIVE_SOURCES here then grml-live will just take what
47 # /etc/grml/fai/apt/sources.list provides by default.
48 # Use the variable like your /etc/apt/sources.list looks like.
49 #GRML_LIVE_SOURCES="
50 #deb http://192.168.1.112/debian     etch         main contrib non-free
51 #deb http://deb.grml.org/            grml-stable  main
52 #deb http://deb.grml.org/            grml-testing main
53 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
54 #"
55
56 # Which Debian suite and which mirror do you want to use for debootstrapping?
57 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
58 # taken. If you specify a value then the file /etc/grml/fai/make-fai-nfsroot.conf
59 # will be updated by grml-live on-the-fly.
60 # Usage: "<suite> <mirror>"
61 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
62
63 # Do you want to use a local mirror (like NFS) as well?
64 # If so specify the directory where debian/ is available:
65 # MIRROR_DIRECTORY="/mnt/mirror"
66 # ... and the sources.list entry for the directory:
67 # MIRROR_SOURCES="deb file:///mnt/mirror/debian sid main contrib non-free"
68
69 # Version number of ISO:
70 VERSION="0.0-1"
71
72 # Name of the release:
73 RELEASENAME="grml-live just rocks!"
74
75 # Which "grml flavour name" do you want to use?
76 # Common usage examples: grml, grml-small, grml64,...
77 GRML_NAME="grml"
78
79 # Specify hostname of the live-system:
80 HOSTNAME=grml
81
82 # Specify user with UID 1000 on live-system:
83 USERNAME=grml
84
85 # Which bootloader do you want to use? Default: isolinux
86 # Supported values: isolinux, grub
87 # BOOT_METHOD='isolinux'
88
89 # Directory of configuration files for grml-live's FAI:
90 GRML_FAI_CONFIG=/etc/grml/fai
91
92 # Do you want to pass any additional arguments to FAI?
93 # FAI_ARGS=""
94
95 # Where do you want to store grml-live.log?
96 # LOGDIR="/var/log/fai/dirinstall/$HOSTNAME"
97
98 # Which architecture do you want to build?
99 # It defaults to output of 'dpkg --print-architecture'
100 # ARCH="i386"
101
102 # Do you want to use your own templates? If so set the
103 # template directory but please make sure it looks
104 # likes the default directory [/usr/share/grml-live/templates]
105 # TEMPLATE_DIRECTORY='/usr/share/grml-live/templates'
106
107 # Do you want to download pageant, plink, pscp, psftp, putty and puttygen
108 # using wget to store it inside $BUILD_OUTPUT/windows/?
109 # Just unset it do skip download via wget or modify the download URL.
110 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
111
112 ## END OF FILE #################################################################