summaryrefslogtreecommitdiff
path: root/examples/cloud-config-TODO.txt
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cloud-config-TODO.txt')
-rw-r--r--examples/cloud-config-TODO.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/cloud-config-TODO.txt b/examples/cloud-config-TODO.txt
deleted file mode 100644
index 20db618f..00000000
--- a/examples/cloud-config-TODO.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-# Add apt configuration files
-# Add an apt.conf.d/ file with the relevant content
-#
-# See apt.conf man page for more information.
-#
-# Defaults:
-# + filename: 00-boot-conf
-#
-apt_conf:
-
- # Creates an apt proxy configuration in /etc/apt/apt.conf.d/01-proxy
- - filename: "01-proxy"
- content: |
- Acquire::http::Proxy "http://proxy.example.org:3142/ubuntu";
-
- # Add the following line to /etc/apt/apt.conf.d/00-boot-conf
- # (run debconf at a critical priority)
- - 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
-
-