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