Use parted to create partition table (issue #90)
[grml-debootstrap.git] / config
diff --git a/config b/config
index 8cec882..a9fb880 100644 (file)
--- a/config
+++ b/config
@@ -2,7 +2,7 @@
 # Purpose:       configuration file for grml-debootstrap
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
+# License:       This file is licensed under the GPL v2 or any later version.
 ################################################################################
 
 ################################################################################
@@ -37,7 +37,7 @@
 
 # Set mirror where packages will be downloaded from.
 # Default: use /etc/debootstrap/etc/apt/sources.list if it exists, else
-# 'http://http.debian.net/debian'
+# 'http://httpredir.debian.org/debian'
 # Usage example:
 # MIRROR='ftp://ftp.de.debian.org/debian'
 
 # BACKPORTREPOS='yes'
 
 # Debian release that should be installed.
-# Supported values: lenny, squeeze, wheezy, sid
-# Default: 'wheezy'
-# RELEASE='wheezy'
+# Supported values: lenny, squeeze, wheezy, jessie, stretch, sid
+# Default: 'jessie'
+# RELEASE='jessie'
 
 # Define components that should be used within sources.list.
-# Default: 'main contrib non-free'
+# Default: 'main'
 # COMPONENTS='main contrib non-free'
 
 # Set target architecture.
@@ -82,7 +82,7 @@
 # ARCH='amd64'
 
 # Hostname of new system.
-# Default: 'grml'
+# Default: $HOSTNAME or if unset 'grml'
 # HOSTNAME='grml'
 
 # Kernel version to install.
 # Default: 'yes' (if file exists)
 # DEBCONF='no'
 
-# Run scripts from /etc/debootstrap/chroot-scripts/ inside chroot.
-# Default: 'yes'
-# CHROOT_SCRIPTS='no'
-
 # Run scripts from /etc/debootstrap/pre-scripts/ before creating the chroot.
 # Default: 'yes'
 # PRE_SCRIPTS='no'
 
-# Run scripts from /etc/debootstrap/pre-scripts/ after setting up chroot.
+# Run scripts from /etc/debootstrap/chroot-scripts/ inside chroot.
+# Default: 'yes'
+# CHROOT_SCRIPTS='no'
+
+# Run scripts from /etc/debootstrap/post-scripts/ after setting up chroot.
 # Default: 'yes'
-# SCRIPTS='no'
+# POST_SCRIPTS='no'
 
 # Install *.deb packages from /etc/debootstrap/extrapackages/
 # Default: 'yes'
 
 # File system creation tool to apply on $TARGET.
 # If empty, no file system will be created.
-# Default: 'mkfs.ext3'
+# Default: 'mkfs.ext4'
 # MKFS=''
 
+# Command line options for file system creation tool.
+# Default: no default.
+# MKFS_OPTS=''
+
 # Filesystem tuning tool to apply on $TARGET.
 # If empty, the created file system will not be tuned.
 # Default: 'tune2fs -c0 -i0' if ext* filesystem is used, no default otherwise.
 # Default: 'yes'
 # LOCALES='no'
 
-# locales that should be used as default.
+# locales (LANG) that should be used as default.
 # Default: 'en_US.UTF-8'
 # DEFAULT_LOCALES='en_US.UTF-8'
 
+# locales (LANGUAGE) that should be used as default.
+# Default: 'en_US:en'
+# DEFAULT_LANGUAGE='en_US:en'
+
 # Use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime.
 # Default: 'Europe/Vienna'
 # TIMEZONE='Europe/Vienna'
 # Default: '/etc/debootstrap/install_notes' (empty file).
 # INSTALL_NOTES='/etc/debootstrap/install_notes'
 
+# Use fixed disk identifiers for Virtual Machine builds.
+# Useful for reproducible builds.
+# Default: 'no'
+# FIXED_DISK_IDENTIFIERS='yes'
+
+# Disk identifier when using FIXED_DISK_IDENTIFIERS='yes'.
+# Use uuid-runtime's uuidgen tool to generate random UUIDs on demand.
+# Default: '26ada0c0-1165-4098-884d-aafd2220c2c6'
+# DISK_IDENTIFIER="$(uuidgen)"
+
+# Delete grml-debootstrap configuration files from installed system.
+# Useful for reproducible builds or if you don't want to leak information.
+# Default: 'no'
+# REMOVE_CONFIGS='yes'
+
 ## END OF FILE #################################################################