Drop the /etc/grml/fai/apt/sources.list workaround for softupdate for now
[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: Fri Jan 11 01:55:54 CET 2008 [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 # Do you want to zero / clean up / remove the previous logfiles of FAI
29 # before executing grml-live? Otherwise keep all the logfiles inside
30 # /var/log/fai/$HOSTNAME/...
31 # Default: unset (so do not remove the logfile(s))
32 #ZERO_FAI_LOGFILE='1'
33
34 # Which Debian suite to you want to use? Unless it is set it defaults to "etch"
35 # Supported values are: etch, lenny, sid
36 # SUITE="sid"
37
38 # Which FAI classes do you want to use by default?#
39
40 # Notice: GRMLBASE is recommended in any case unless you *really* know what you
41 # are doing; make sure to also use a GRML_* class (for example GRML_SMALL,
42 # GRML_MEDIUM or GRML_FULL) to get an according kernel and also select the
43 # architecture (I386 for x86; AMD64 for x86_64)
44 CLASSES="GRMLBASE,GRML_MEDIUM,I386"
45
46 ## Which mirrors do you want to use? Please set GRML_LIVE_SOURCES *and*
47 ## *FAI_DEBOOTSTRAP* accordingly. To use a local directory (like an NFS mount)
48 ## check out MIRROR_DIRECTORY and MIRROR_SOURCES as well.
49
50 # Do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
51 # If so then activate the according mirrors using GRML_LIVE_SOURCES=...
52 # If you do *not* set GRML_LIVE_SOURCES here then grml-live will just take what
53 # /etc/grml/fai/apt/sources.list provides by default.
54 # Use the variable like your /etc/apt/sources.list looks like.
55 #GRML_LIVE_SOURCES="
56 #deb http://192.168.1.112/debian     etch         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="etch 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 #################################################################