From b4b7fa6bc26c2aef01f4bc4fe990c031f77b2368 Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Mon, 22 Feb 2016 15:36:37 +0100 Subject: [PATCH] plugins/debconf: Documentation --- bootstrapvz/plugins/debconf/README.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bootstrapvz/plugins/debconf/README.rst diff --git a/bootstrapvz/plugins/debconf/README.rst b/bootstrapvz/plugins/debconf/README.rst new file mode 100644 index 0000000..3c3432c --- /dev/null +++ b/bootstrapvz/plugins/debconf/README.rst @@ -0,0 +1,24 @@ +debconf +------- + +``debconf(7)`` is the configuration system for Debian packages. +It enables you to preconfigure packages before their installation. + +This plugin lets you specify debconf answers directly in the manifest. +You should only specify answers for packages that will be installed; the plugin +does not check that this is the case. + +Settings +~~~~~~~~ + +The ``debconf`` plugin directly takes an inline string::: + + plugins: + debconf: >- + d-i pkgsel/install-language-support boolean false + popularity-contest popularity-contest/participate boolean false + + +Consult ``debconf-set-selections(1)`` for a description of the data format. + +