ebf8cfca62
Co-Authored-By: Bartosz Bezak <bartosz@stackhpc.com> Change-Id: I06a3e9922cf95979f3bca120cd82633046270fa3
51 lines
1.9 KiB
YAML
51 lines
1.9 KiB
YAML
---
|
|
###############################################################################
|
|
# Apt package manager configuration.
|
|
|
|
# Apt cache TTL in seconds. Default is 3600.
|
|
apt_cache_valid_time: 3600
|
|
|
|
# Apt proxy URL for HTTP. Default is empty (no proxy).
|
|
apt_proxy_http:
|
|
|
|
# Apt proxy URL for HTTPS. Default is {{ apt_proxy_http }}.
|
|
apt_proxy_https: "{{ apt_proxy_http }}"
|
|
|
|
# List of Apt configuration options. Each item is a dict with the following
|
|
# keys:
|
|
# * content: free-form configuration file content
|
|
# * filename: name of a file in /etc/apt/apt.conf.d/ in which to write the
|
|
# configuration
|
|
# Default is an empty list.
|
|
apt_config: []
|
|
|
|
# Directory containing GPG keyrings for apt repos.
|
|
apt_keys_path: "/usr/local/share/keyrings"
|
|
|
|
# List of apt keys. Each item is a dict containing the following keys:
|
|
# * url: URL of key
|
|
# * filename: Name of a file in which to store the downloaded key. The
|
|
# extension should be '.asc' for ASCII-armoured keys, or '.gpg' otherwise.
|
|
# Default is an empty list.
|
|
apt_keys: []
|
|
|
|
# A list of Apt repositories. Each item is a dict with the following keys:
|
|
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
|
# (optional, default is 'deb')
|
|
# * url: URL of the repository
|
|
# * suites: whitespace-separated list of suites, e.g. jammy (optional, default
|
|
# is ansible_facts.distribution_release)
|
|
# * components: whitespace-separated list of components, e.g. main (optional,
|
|
# default is 'main')
|
|
# * signed_by: whitespace-separated list of names of GPG keyring files in
|
|
# apt_keys_path (optional, default is unset)
|
|
# * architecture: whitespace-separated list of architectures that will be used
|
|
# (optional, default is unset)
|
|
# Default is an empty list.
|
|
apt_repositories: []
|
|
|
|
# Whether to disable repositories in /etc/apt/sources.list. This may be used
|
|
# when replacing the distribution repositories via apt_repositories.
|
|
# Default is false.
|
|
apt_disable_sources_list: false
|