From baa75860958a2e99b27f02d2ea25f2cd107598a0 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 13 May 2022 10:49:52 -0700 Subject: [PATCH] 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 --- roles/configure-mirrors/defaults/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/configure-mirrors/defaults/main.yaml b/roles/configure-mirrors/defaults/main.yaml index f7bc280bf..cd30c3cf7 100644 --- a/roles/configure-mirrors/defaults/main.yaml +++ b/roles/configure-mirrors/defaults/main.yaml @@ -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