20ccfee7c02f14e7c8bae055b99354bbfe4bf550
[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, sid
35 #                       squeeze -> requires /etc/grml/fai/config/basefiles/....tar.gz
36 #                                  until supported by debootstrap
37 # SUITE="sid"
38
39 # Which FAI classes do you want to use by default?#
40
41 # Notice: GRMLBASE is recommended in any case unless you *really* know what you
42 # are doing; make sure to also use a GRML_* class (for example GRML_SMALL,
43 # GRML_MEDIUM or GRML_FULL) to get an according kernel and also select the
44 # architecture (I386 for x86; AMD64 for x86_64)
45 CLASSES="GRMLBASE,GRML_MEDIUM,I386"
46
47 ## Which mirrors do you want to use? Please set GRML_LIVE_SOURCES *and*
48 ## *FAI_DEBOOTSTRAP* accordingly. To use a local directory (like an NFS mount)
49 ## check out MIRROR_DIRECTORY and MIRROR_SOURCES as well.
50
51 # Which Debian mirror do you want to use for main packages (after debootstrapping
52 # has been finished)?
53 # If you do *not* set GRML_LIVE_SOURCES here then grml-live will just take what
54 # /etc/grml/fai/apt/sources.list provides by default. But please do *not*
55 # manually edit /etc/grml/fai/apt/sources.list but instead use $GRML_LIVE_SOURCES.
56 # Use the variable as your /etc/apt/sources.list looks like.
57 #GRML_LIVE_SOURCES="
58 #deb http://192.168.1.112/debian     lenny        main contrib non-free
59 #deb http://deb.grml.org/            grml-stable  main
60 #deb http://deb.grml.org/            grml-testing main
61 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
62 #"
63
64 # Which Debian suite and which mirror do you want to use for debootstrapping?
65 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
66 # taken. If you specify a value then the file /etc/grml/fai/make-fai-nfsroot.conf
67 # will be updated by grml-live on-the-fly.
68 # Usage: "<suite> <mirror>"
69 # FAI_DEBOOTSTRAP="lenny http://ftp.de.debian.org/debian"
70
71 # Do you want to use a local mirror (like NFS) as well?
72 # If so specify the directory where debian/ is available:
73 # MIRROR_DIRECTORY="/mnt/mirror"
74 # ... and the sources.list entry for the directory:
75 # MIRROR_SOURCES="deb file:///mnt/mirror/debian sid main contrib non-free"
76
77 # Version number of ISO:
78 VERSION="0.0-1"
79
80 # Name of the release:
81 RELEASENAME="grml-live just rocks!"
82
83 # Which "grml flavour name" do you want to use?
84 # Common usage examples: grml, grml-small, grml64,...
85 GRML_NAME="grml"
86
87 # Specify hostname of the live-system:
88 HOSTNAME=grml
89
90 # Specify user with UID 1000 on live-system:
91 USERNAME=grml
92
93 # Specify options for Squashfs build stage (running mksquashfs):
94 # SQUASHFS_OPTIONS="-nolzma"
95
96 # Which bootloader do you want to use? Default: isolinux
97 # Supported values: isolinux, grub
98 # BOOT_METHOD='isolinux'
99
100 # Directory of configuration files for grml-live's FAI:
101 GRML_FAI_CONFIG=/etc/grml/fai
102
103 # Do you want to pass any additional arguments to FAI?
104 # FAI_ARGS=""
105
106 # Where do you want to store grml-live.log?
107 # LOGDIR="/var/log/fai/$HOSTNAME/last"
108
109 # Which architecture do you want to build?
110 # It defaults to output of 'dpkg --print-architecture'
111 # ARCH="i386"
112
113 # Do you want to use your own templates? If so set the
114 # template directory but please make sure it looks
115 # likes the default directory [/usr/share/grml-live/templates]
116 # TEMPLATE_DIRECTORY='/usr/share/grml-live/templates'
117
118 # Do you want to skip adding /boot/addons/ (from the template directory)?
119 # NO_ADDONS='1'
120
121 # Do you want to skip adding /boot/addons/bsd4grml/ (from the template directory)?
122 # NO_ADDONS_BSD4GRML='1'
123
124 # By default the ISO is created for hybrid boot, so you can either
125 # boot the CD using normal el torito mode or copy it to USB device
126 # *without* having to run grml2usb (like: 'dd if=grml.iso of=/dev/sdX')
127 # - working both with the same ISO
128 # HYBRID_METHOD='disable'   # do not create a hybrid ISO
129 # HYBRID_METHOD='isohybrid' # use isohybrid instead of the default (being manifold) 
130
131 # exclude files from compressed squashfs file using the
132 # the mksquashfs option -ef:
133 # SQUASHFS_EXCLUDES_FILE="/etc/grml/fai/squashfs-excludes"
134
135 # Do you want to download pageant, plink, pscp, psftp, putty and puttygen
136 # using wget to store it inside $BUILD_OUTPUT/windows/?
137 # Just unset it do skip download via wget or modify the download URL.
138 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
139
140 ## END OF FILE #################################################################