mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-22 21:25:43 -05:00
repo_config: add default remote_url=None to BaseDistro
This commit is contained in:
parent
9766c70523
commit
78f9f31e7a
1 changed files with 8 additions and 5 deletions
|
@ -112,11 +112,14 @@ REPOS_CONFIG_DEFAULT = ReposConfigFile({
|
|||
},
|
||||
**{r: deepcopy(REPO_DEFAULTS) for r in REPOSITORIES},
|
||||
},
|
||||
BASEDISTROS_KEY: {arch: {
|
||||
'repos': {k: {
|
||||
'remote_url': v
|
||||
} for k, v in arch_def['repos'].items()},
|
||||
} for arch, arch_def in BASE_DISTROS.items()},
|
||||
BASEDISTROS_KEY: {
|
||||
arch: {
|
||||
REMOTEURL_KEY: None,
|
||||
'repos': {k: {
|
||||
'remote_url': v
|
||||
} for k, v in arch_def['repos'].items()},
|
||||
} for arch, arch_def in BASE_DISTROS.items()
|
||||
},
|
||||
})
|
||||
|
||||
_current_config = None
|
||||
|
|
Loading…
Add table
Reference in a new issue