Switch enable_src_repos to False in configure-mirrors

This should only be landed after we have announced this changing default
and enough time has passed for people to reasonably update their CI
systems if necessary.

Change-Id: Ibf2e2ca0579e180db074b7ab342dae15108dad27
This commit is contained in:
Clark Boylan
2022-04-27 09:14:11 -07:00
parent fc133bd165
commit 88cd70f90c
2 changed files with 3 additions and 4 deletions

View File

@@ -32,12 +32,11 @@ An ansible role to configure services to use mirrors.
Ubuntu Bionic. Ubuntu Bionic.
.. zuul:rolevar:: enable_deb_src_repos .. zuul:rolevar:: enable_deb_src_repos
:default: True :default: False
Set this to True in order to enable deb-src entries in sources.list Set this to True in order to enable deb-src entries in sources.list
configs for apt. Note this option currently only works on Debian configs for apt. Note this option currently only works on Debian
(not Ubuntu) installations and will be set to default to False in (not Ubuntu) installations.
the near future.
.. zuul:rolevar:: configure_mirrors_extra_repos .. zuul:rolevar:: configure_mirrors_extra_repos
:default: True :default: True

View File

@@ -11,4 +11,4 @@ http_or_https: >-
pypi_mirror: "{{ http_or_https }}://{{ pypi_fqdn }}/pypi/simple" 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 }}" wheel_mirror: "{{ http_or_https }}://{{ mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture | lower }}"
enable_deb_src_repos: True enable_deb_src_repos: True
configure_mirrors_extra_repos: True configure_mirrors_extra_repos: False