a6b18b49baebf603ae30ada98ced817c7ffe47a3
[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 # Do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
50 # If so then activate the according mirrors using GRML_LIVE_SOURCES=...
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.
53 # Use the variable like your /etc/apt/sources.list looks like.
54 #GRML_LIVE_SOURCES="
55 #deb http://192.168.1.112/debian     lenny        main contrib non-free
56 #deb http://deb.grml.org/            grml-stable  main
57 #deb http://deb.grml.org/            grml-testing main
58 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
59 #"
60
61 # Which Debian suite and which mirror do you want to use for debootstrapping?
62 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
63 # taken. If you specify a value then the file /etc/grml/fai/make-fai-nfsroot.conf
64 # will be updated by grml-live on-the-fly.
65 # Usage: "<suite> <mirror>"
66 # FAI_DEBOOTSTRAP="lenny http://ftp.de.debian.org/debian"
67
68 # Do you want to use a local mirror (like NFS) as well?
69 # If so specify the directory where debian/ is available:
70 # MIRROR_DIRECTORY="/mnt/mirror"
71 # ... and the sources.list entry for the directory:
72 # MIRROR_SOURCES="deb file:///mnt/mirror/debian sid main contrib non-free"
73
74 # Version number of ISO:
75 VERSION="0.0-1"
76
77 # Name of the release:
78 RELEASENAME="grml-live just rocks!"
79
80 # Which "grml flavour name" do you want to use?
81 # Common usage examples: grml, grml-small, grml64,...
82 GRML_NAME="grml"
83
84 # Specify hostname of the live-system:
85 HOSTNAME=grml
86
87 # Specify user with UID 1000 on live-system:
88 USERNAME=grml
89
90 # Specify options for Squashfs build stage (running mksquashfs):
91 # SQUASHFS_OPTIONS="-nolzma"
92
93 # Which bootloader do you want to use? Default: isolinux
94 # Supported values: isolinux, grub
95 # BOOT_METHOD='isolinux'
96
97 # Directory of configuration files for grml-live's FAI:
98 GRML_FAI_CONFIG=/etc/grml/fai
99
100 # Do you want to pass any additional arguments to FAI?
101 # FAI_ARGS=""
102
103 # Where do you want to store grml-live.log?
104 # LOGDIR="/var/log/fai/$HOSTNAME/last"
105
106 # Which architecture do you want to build?
107 # It defaults to output of 'dpkg --print-architecture'
108 # ARCH="i386"
109
110 # Do you want to use your own templates? If so set the
111 # template directory but please make sure it looks
112 # likes the default directory [/usr/share/grml-live/templates]
113 # TEMPLATE_DIRECTORY='/usr/share/grml-live/templates'
114
115 # exclude files from compressed squashfs file using the
116 # the mksquashfs option -ef:
117 # SQUASHFS_EXCLUDES_FILE="/etc/grml/fai/squashfs-excludes"
118
119 # Do you want to download pageant, plink, pscp, psftp, putty and puttygen
120 # using wget to store it inside $BUILD_OUTPUT/windows/?
121 # Just unset it do skip download via wget or modify the download URL.
122 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
123
124 ## END OF FILE #################################################################