Set user, group and mode for /etc/systemd
[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 # !!!!!! IMPORTANT NOTE !!!!!
8 # This file is meant as a reference. Please adjust your local configuration
9 # via /etc/grml/grml-live.local instead as this file is marked as configuration
10 # file in your package management.
11 # !!!!!! IMPORTANT NOTE !!!!!
12 ################################################################################
13
14 # Main output directory
15 # Please notice that you need suid,dev,rw permissions there
16 # OUTPUT="/grml/grml-live"
17 # You have enough RAM? Use shared memory for fast testing-purposes:
18 # OUTPUT="/dev/shm" # mount -o remount,suid,dev,rw /dev/shm
19
20 # Where do want to find the chroot of the buildprocess files?
21 # CHROOT_OUTPUT="$OUTPUT/grml_chroot"
22 # Where do you want to find the compressed chroot, bootstuff,...?
23 # BUILD_OUTPUT="$OUTPUT/grml_cd"
24 # Where do you want to find the final ISO?
25 # ISO_OUTPUT="$OUTPUT/grml_isos"
26 # Where do you want to find the netboot package?
27 # NETBOOT="${OUTPUT}/netboot/"
28
29 # Do you want to preserve the logfile from being cleaned after each execution
30 # of grml-live? By default the logfile is cleaned so the log doesn't fill up.
31 # If you want to store your logs permanently it's recommended to use grml-live-db.
32 # PRESERVE_LOGFILE='1'
33
34 # If package grml-live-db is installed the package selection and grml-live.log
35 # are being logged to to a sqlite database.Defaults to /var/log/grml-live.db
36 # DPKG_DATABASE=/var/log/grml-live.db
37
38 # Use your own database wrapper script for grml-live-db:
39 # DPKG_DBSCRIPT=/usr/share/grml-live-db/scripts/dpkg-to-db
40
41 # Use your own database script cmdline options for grml-live-db:
42 # DPKG_DBOPTIONS="-d $DPKG_DATABASE --logfile $LOGFILE --flavour $GRML_NAME < $DPKG_LIST"
43
44 # Do you want to zero / clean up / remove the previous logfiles of FAI
45 # before executing grml-live? Otherwise keep all the logfiles inside
46 # /var/log/fai/$HOSTNAME/...
47 # Default: unset (so do not remove the logfile(s))
48 # ZERO_FAI_LOGFILE='1'
49
50 # Which Debian suite/release do you want to use?
51 # Supported values are: stable, testing, unstable (or their corresponding release
52 # names like "jessie").
53 # Unless it is set it defaults to "testing".
54 # SUITE="unstable"
55
56 # Which FAI classes do you want to use by default?#
57
58 # Notice: GRMLBASE is recommended in any case unless you *really* know what you
59 # are doing; make sure to also use a GRML_* class (for example GRML_SMALL
60 # or GRML_FULL) to get an according kernel and also select the
61 # architecture (I386 for x86; AMD64 for x86_64)
62 # CLASSES="GRMLBASE,GRML_FULL,I386"
63
64 # HTTP Proxy to use for APT
65 # APT_PROXY="http://localhost:3142/"
66
67 # Which Debian suite and which mirror do you want to use for debootstrapping?
68 # Usage: "<suite> <mirror>"
69 # FAI_DEBOOTSTRAP="jessie http://ftp.debian.org/debian"
70
71 # Do you want to use a local mirror (like NFS)?
72 # If so specify the directory where debian/ is available:
73 # MIRROR_DIRECTORY="/media/mirror"
74 # ... and then set up an according class file in
75 # ${GRML_FAI_CONFIG}/config/files/etc/apt/sources.list.d/
76 # containing something like:
77 # deb file:///media/mirror/debian sid main contrib non-free
78
79 # Version number of ISO:
80 # VERSION="0.0-1"
81
82 # Name of the release:
83 # RELEASENAME="grml-live rocks"
84
85 # Which "grml flavour name" do you want to use?
86 # Common usage examples: grml, grml-small, grml64,...
87 # GRML_NAME="grml"
88
89 # Specify hostname of the live-system:
90 # HOSTNAME=grml
91
92 # Specify user with UID 1000 on live-system:
93 # USERNAME=grml
94
95 # Which bootloader do you want to use? Default: isolinux
96 # Supported values: isolinux, grub, grub2
97 # BOOT_METHOD='isolinux'
98
99 # Directory of configuration files for grml-live's FAI:
100 # GRML_FAI_CONFIG=/etc/grml/fai
101
102 # Do you want to put any local files into the chroot?
103 # If so then point CHROOT_INSTALL to a directory providing the files.
104 # Note: the files are installed under '/' in the chroot -
105 # so you have to create the rootfs structure on your own.
106 # CHROOT_INSTALL="$GRML_FAI_CONFIG/chroot_install"
107
108 # Do you want to pass any additional arguments to FAI?
109 # FAI_ARGS=""
110
111 # Where do you want to store grml-live.log?
112 # LOGDIR="/var/log/fai/$HOSTNAME/last"
113
114 # Which architecture do you want to build?
115 # It defaults to output of 'dpkg --print-architecture'
116 # ARCH="i386"
117
118 # Name of distribution that should be build. By default
119 # it's "grml", if you want to adjust please make sure
120 # your distri name is just one single word so it
121 # works on the boot prompt.
122 # DISTRI_NAME="grml"
123
124 # Short information about the distribution. Default:
125 # DISTRI_INFO="Grml - Live Linux for system administrators   "
126
127 # Bootsplash background image use in isolinux configuration
128 # Note: not relevant if using non-default ISOLINUX_METHOD="console".
129 # DISTRI_SPLASH='grml.png'
130
131 # Do you want to use your own templates? If so set the
132 # template directory but please make sure it looks
133 # likes the default directory [/usr/share/grml-live/templates]
134 # TEMPLATE_DIRECTORY='/usr/share/grml-live/templates'
135
136 # Use custom scripts, for example for bootgrub.mksh?
137 # Useful when running grml-live from git checkout.
138 # If unset defaults to /usr/share/grml-live/scripts
139 # SCRIPTS_DIRECTORY='/usr/share/grml-live/scripts'
140
141 # Do you want to use console based isolinux boot splash
142 # instead of the default graphical menu?
143 # ISOLINUX_METHOD="console"
144
145 # Do you want to skip adding /boot/addons/ (from the template directory)?
146 # NO_ADDONS='1'
147
148 # Do you want to skip adding /boot/addons/bsd4grml/ (from the template directory)?
149 # NO_ADDONS_BSD4GRML='1'
150
151 # By default the ISO is created for hybrid boot, so you can either
152 # boot the CD using normal el torito mode or copy it to USB device
153 # *without* having to run grml2usb (like: 'dd if=grml.iso of=/dev/sdX')
154 # - working both with the same ISO
155 # HYBRID_METHOD='disable'   # do not create a hybrid ISO
156 # HYBRID_METHOD='isohybrid' # use isohybrid from SYSLINUX
157 # HYBRID_METHOD='grub2'     # use manifold with GRUB 2
158 # HYBRID_METHOD='manifold'  # use manifold with ISOLINUX (default)
159
160 # Binary that should be used for creating the squashfs file.
161 # Defaults to the executable matching the kernel version, falls back to mksquashfs.
162 # SQUASHFS_BINARY='mksquashfs'
163
164 # Options that should be used by mksquashfs during build process.
165 # Defaults to '-b 256k' and the according LZMA/XZ option.
166 # SQUASHFS_OPTIONS='-b 256k'
167
168 # exclude files from compressed squashfs file using the
169 # the mksquashfs option -ef:
170 # SQUASHFS_EXCLUDES_FILE="${GRML_FAI_CONFIG}/config/grml/squashfs-excludes"
171
172 # Do you want to exit grml-live if some packages were requested for installation
173 # on fresh installs but are missing on the generated ISO finally?
174 # By default the package list is sent to stdout but grml-live doesn't interrupt.
175 # EXIT_ON_MISSING_PACKAGES=1
176
177 # Do you want to use a special string for identifying the ISO?
178 # By default the grml-name and version string are used as a base for generating
179 # /conf/bootid.txt on the ISO. If you want to use a different value feel free to
180 # adjust it accordingly.
181 # Please notice that space characters inside this variable are not supported.
182 # BOOTID="mybootid"
183
184 # Do you want to skip the /conf/bootid.txt feature?
185 # NO_BOOTID='1'
186
187 # Do you want to add any additional bootoptions that should be used by default?
188 # DEFAULT_BOOTOPTIONS="ssh=secret"
189
190 ## END OF FILE #################################################################