establish config/mirrors.yml as a way to set up mirrors

The mirrors: entry in config.yml is great for quick access and shorter
mirror lists.  Now that we are adding a lot more metadata to the mirrors,
including potentially the full text of the privacy policy, having this
in its own file should make these cases easier to manage.
This commit is contained in:
Hans-Christoph Steiner 2023-12-06 16:04:43 +01:00
parent 7a0dad6dfc
commit 6d541e3ef6
No known key found for this signature in database
GPG key ID: 3E177817BA1B9BFA
4 changed files with 55 additions and 1 deletions

View file

@ -117,11 +117,13 @@ GITLAB_COM_PAGES_MAX_SIZE = 1000000000
ANTIFEATURES_CONFIG_NAME = 'antiFeatures'
CATEGORIES_CONFIG_NAME = 'categories'
CONFIG_CONFIG_NAME = 'config'
MIRRORS_CONFIG_NAME = 'mirrors'
RELEASECHANNELS_CONFIG_NAME = "releaseChannels"
CONFIG_NAMES = (
ANTIFEATURES_CONFIG_NAME,
CATEGORIES_CONFIG_NAME,
CONFIG_CONFIG_NAME,
MIRRORS_CONFIG_NAME,
RELEASECHANNELS_CONFIG_NAME,
)