Support GRML_NAME, drop character limits, unify files in directory templates
[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 Sep 29 10:46:18 CEST 2007 [mika]
7 ################################################################################
8
9 # Main output directory
10 # Please notice that you need suid,dev,rw permissions there
11 TARGET="/grml/grml-live"
12 # You have enough RAM? Use shared memory for fast testing purposes:
13 # TARGET="/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_TARGET="$TARGET/grml_chroot"
17 # Where do you want to find the compressed chroot, bootstuff,...?
18 BUILD_TARGET="$TARGET/grml_cd"
19 # Where do you want to find the final ISO?
20 ISO_TARGET="$TARGET/grml_isos"
21
22 # Which Debian suite to you want to use? Unless it's set it defaults to "etch"
23 # Supported values are: stable, testing, unstable, etch, lenny, sid
24 # SUITE="sid"
25
26 # Which FAI classes do you want to use by default?
27 # Notice: GRMLBASE is recommended in any case unless you *really*
28 # know what you are doing; class I386 provides the kernel for x86
29 CLASSES="GRMLBASE,I386"
30
31 # Which grml name do you want to use?
32 # Common usage examples: grml, grml-small, grml64,...
33 # Default: 'grml'
34 # GRML_NAME="grml"
35
36 ## Which mirrors do you want to use? Please set GRML_LIVE_SOURCES *and*
37 ## *FAI_DEBOOTSTRAP* accordingly. To use a local directory (like an NFS mount)
38 ## check out MIRROR_DIRECTORY and MIRROR_SOURCES as well.
39
40 # Do you want to generate /etc/grml/fai/apt/sources.list on-the-fly via grml-live?
41 # If so then activate the according mirrors using GRML_LIVE_SOURCES=...
42 # If you do *not* set GRML_LIVE_SOURCES here then grml-live will just take what
43 # /etc/grml/fai/apt/sources.list provides by default.
44 # Use the variable like your /etc/apt/sources.list looks like.
45 #GRML_LIVE_SOURCES="
46 #deb http://192.168.1.112/debian     etch         main contrib non-free
47 #deb http://deb.grml.org/            grml-stable  main
48 #deb http://deb.grml.org/            grml-testing main
49 #deb http://ftp.de.debian.org/debian etch         main contrib non-free
50 #"
51
52 # Which Debian suite and which mirror do you want to use for debootstrapping?
53 # Unless specified the default from /etc/grml/fai/make-fai-nfsroot.conf will be
54 # taken. If you specify a value then the file /etc/grml/fai/make-fai-nfsroot.conf
55 # will be updated by grml-live on-the-fly.
56 # Usage: "<suite> <mirror>"
57 # FAI_DEBOOTSTRAP="etch http://ftp.de.debian.org/debian"
58
59 # Do you want to use a local mirror (like NFS) as well?
60 # If so specify the directory where debian/ is available:
61 # MIRROR_DIRECTORY="/mnt/mirror"
62 # ... and the sources.list entry for the directory:
63 # MIRROR_SOURCES="deb file:///mnt/mirror/debian sid main contrib non-free"
64
65 # Version number of ISO:
66 VERSION="0.0-1"
67
68 # Name of the release:
69 RELEASENAME="grml-live just rocks!"
70
71 # Specify hostname of the live-system:
72 HOSTNAME=grml
73
74 # Specify user with UID 1000 on live-system:
75 USERNAME=grml
76
77 # Which bootloader do you want to use? Default: isolinux
78 # Supported values: isolinux, grub
79 # BOOT_METHOD='isolinux'
80
81 # Directory of configuration files for grml-live's FAI:
82 GRML_FAI_CONFIG=/etc/grml/fai
83
84 # Do you want to pass any additional arguments to FAI?
85 # FAI_ARGS=""
86
87 # Where do you want to store grml-live.log?
88 # LOGDIR="/var/log/fai/dirinstall/$HOSTNAME"
89
90 # Which architecture do you want to build?
91 # It defaults to output of 'dpkg --print-architecture'
92 # ARCH="i386"
93
94 # Do you want to download pageant, plink, pscp, psftp, putty and puttygen
95 # using wget to store it inside $BUILD_TARGET/windows/?
96 # Just unset it do skip download via wget or modify the download URL.
97 WINDOWS_BINARIES="http://the.earth.li/~sgtatham/putty/latest/x86/"
98
99 ## END OF FILE #################################################################