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
This commit is contained in:
Clark Boylan 2022-05-13 10:49:52 -07:00
parent d8184feded
commit baa7586095

View File

@ -10,5 +10,5 @@ http_or_https: >-
{%- 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: True
configure_mirrors_extra_repos: False
enable_deb_src_repos: False
configure_mirrors_extra_repos: True