|
11 | 11 | # Apt proxy URL for HTTPS. Default is {{ apt_proxy_http }}.
|
12 | 12 | #apt_proxy_https:
|
13 | 13 |
|
| 14 | +# List of Apt configuration options. Each item is a dict with the following |
| 15 | +# keys: |
| 16 | +# * content: free-form configuration file content |
| 17 | +# * filename: name of a file in /etc/apt/apt.conf.d/ in which to write the |
| 18 | +# configuration |
| 19 | +# Default is an empty list. |
| 20 | +#apt_config: |
| 21 | + |
| 22 | +# List of apt keys. Each item is a dict containing the following keys: |
| 23 | +# * url: URL of key |
| 24 | +# * filename: Name of a file in which to store the downloaded key. The |
| 25 | +# extension should be '.asc' for ASCII-armoured keys, or '.gpg' otherwise. |
| 26 | +# Default is an empty list. |
| 27 | +#apt_keys: |
| 28 | + |
| 29 | +# A list of Apt repositories. Each item is a dict with the following keys: |
| 30 | +# * types: whitespace-separated list of repository types, e.g. deb or deb-src |
| 31 | +# (optional, default is 'deb') |
| 32 | +# * url: URL of the repository |
| 33 | +# * suites: whitespace-separated list of suites, e.g. focal (optional, default |
| 34 | +# is ansible_facts.distribution_release) |
| 35 | +# * components: whitespace-separated list of components, e.g. main (optional, |
| 36 | +# default is 'main') |
| 37 | +# * signed_by: whitespace-separated list of names of GPG keyring files in |
| 38 | +# apt_keys_path (optional, default is unset) |
| 39 | +# * architecture: whitespace-separated list of architectures that will be used |
| 40 | +# (optional, default is unset) |
| 41 | +# Default is an empty list. |
| 42 | +#apt_repositories: |
| 43 | + |
| 44 | +# Whether to disable repositories in /etc/apt/sources.list. This may be used |
| 45 | +# when replacing the distribution repositories via apt_repositories. |
| 46 | +# Default is false. |
| 47 | +#apt_disable_sources_list: |
| 48 | + |
14 | 49 | ###############################################################################
|
15 | 50 | # Dummy variable to allow Ansible to accept this file.
|
16 | 51 | workaround_ansible_issue_8743: yes
|
0 commit comments