aboutsummaryrefslogtreecommitdiff
path: root/testsuite/rootstrap.conf
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/rootstrap.conf')
-rw-r--r--testsuite/rootstrap.conf69
1 files changed, 69 insertions, 0 deletions
diff --git a/testsuite/rootstrap.conf b/testsuite/rootstrap.conf
new file mode 100644
index 0000000..e5b6640
--- /dev/null
+++ b/testsuite/rootstrap.conf
@@ -0,0 +1,69 @@
+#
+# Global settings, these are passed on to all modules
+#
+[global]
+fstype=ext2
+
+# How large to create the initial image (MB). Be generous, as image
+# creation will fail if it is too small, and it will be created as a
+# sparse file, making it relatively inexpensive
+initialsize=1024
+
+# Will be resized to leave this much free space when building is
+# complete. Leave unset or set to 0 to disable resizing.
+freespace=0
+
+# Which modules to invoke. Each module can have its own section
+# below, with module-specific settings
+modules=network mkfs mount debian uml umount
+
+# Global environment variables
+PATH=/bin:/sbin:/usr/bin:/usr/sbin
+
+# Use of a caching proxy is highly recommended where a local mirror is
+# not available, so that packages are not fetched many times
+# unnecessarily. I use squid.
+#http_proxy=http://192.168.10.1:3128
+
+#
+# Networking
+#
+# required unless you have a local copy of all packages to be installed
+# these settings are only used during installation
+
+[network]
+interface=eth0
+transport=slirp
+host=
+uml=10.0.2.15
+nameserver=10.0.2.3
+gateway=10.0.2.2
+netmask=255.255.0.0
+slirp=slirp-fullbolt
+
+#
+# Debian module
+#
+[debian]
+dist=sid
+
+# A local mirror is best, a caching proxy (such as squid) is almost as
+# good
+
+mirror=http://ftp.jp.debian.org/debian
+
+# Packages which should not be installed in the first place (be sure
+# you know what you're doing)
+exclude=pcmcia-cs setserial dhcp-client
+
+# Packages which should be purged after the initial install
+purge=base-config console-common console-tools console-data console-tools-libs
+
+# Extra packages to install via debootstrap
+#include=myfavoritepackage someotherpackage
+
+# Extra packages to install via apt after initial debootstrap install
+#install=myfavoritepackage someotherpackage
+
+[uml]
+install_modules=yes