zuul-jobs/roles/configure-mirrors/defaults/main.yaml
Clark Boylan baa7586095 Fix the disabling of deb src repos in configure-mirrors
The wrong flag was toggled to False. This revers the other flag back to
True and disables enable_deb_src_repos by setting it to false.

This was my mistake and also missed in review :(

Change-Id: Iffef2da4ae1ad4910be6d124e0cb0d019460fbb5
2022-05-13 10:49:52 -07:00

15 lines
591 B
YAML

set_apt_mirrors_trusted: False
mirror_fqdn: "{{ zuul_site_mirror_fqdn|default(omit) }}"
pypi_fqdn: "{{ mirror_fqdn }}"
mirror_use_ssl: False
http_or_https: >-
{%- if mirror_use_ssl and ansible_distribution_release not in ['xenial', 'stretch'] -%}
https
{%- else -%}
http
{%- endif -%}
pypi_mirror: "{{ http_or_https }}://{{ pypi_fqdn }}/pypi/simple"
wheel_mirror: "{{ http_or_https }}://{{ mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture | lower }}"
enable_deb_src_repos: False
configure_mirrors_extra_repos: True