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