summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2010-06-18 15:00:45 -0400
committerScott Moser <smoser@ubuntu.com>2010-06-18 15:00:45 -0400
commit7c9d41b6b14285e2f161237a3012ad1d1cf5b250 (patch)
tree4d78e2c1644c7212b35e045da6919ef02a836bff /doc
parentb9d39a834af1c6c30122f503aba695e49f4fecca (diff)
downloadvyos-cloud-init-7c9d41b6b14285e2f161237a3012ad1d1cf5b250.tar.gz
vyos-cloud-init-7c9d41b6b14285e2f161237a3012ad1d1cf5b250.zip
add suport for setting debconf selections through debconf-set-selections
LP: #582667
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/cloud-config-TODO.txt15
-rw-r--r--doc/examples/cloud-config.txt14
2 files changed, 14 insertions, 15 deletions
diff --git a/doc/examples/cloud-config-TODO.txt b/doc/examples/cloud-config-TODO.txt
index 20db618f..c7ed54ab 100644
--- a/doc/examples/cloud-config-TODO.txt
+++ b/doc/examples/cloud-config-TODO.txt
@@ -18,18 +18,3 @@ apt_conf:
- content: |
DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt -p critical|| true";
-# Provide debconf answers
-#
-# See debconf-set-selections man page.
-#
-# Default: none
-#
-debconf_selections: | # Need to perserve newlines
- # Force debconf priority to critical.
- debconf debconf/priority select critical
-
- # Override default frontend to readline, but allow user to select.
- debconf debconf/frontend select readline
- debconf debconf/frontend seen false
-
-
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt
index 4cb435f6..8afefcaa 100644
--- a/doc/examples/cloud-config.txt
+++ b/doc/examples/cloud-config.txt
@@ -212,3 +212,17 @@ cloud_config_modules:
# can easily be imported into the configured user
# This can be a single string ('smoser') or a list ([smoser, kirkland])
ssh_import_id: [smoser]
+
+# Provide debconf answers
+#
+# See debconf-set-selections man page.
+#
+# Default: none
+#
+debconf_selections: | # Need to perserve newlines
+ # Force debconf priority to critical.
+ debconf debconf/priority select critical
+
+ # Override default frontend to readline, but allow user to select.
+ debconf debconf/frontend select readline
+ debconf debconf/frontend seen false