mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -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},
|
**{r: deepcopy(REPO_DEFAULTS) for r in REPOSITORIES},
|
||||||
},
|
},
|
||||||
BASEDISTROS_KEY: {arch: {
|
BASEDISTROS_KEY: {
|
||||||
'repos': {k: {
|
arch: {
|
||||||
'remote_url': v
|
REMOTEURL_KEY: None,
|
||||||
} for k, v in arch_def['repos'].items()},
|
'repos': {k: {
|
||||||
} for arch, arch_def in BASE_DISTROS.items()},
|
'remote_url': v
|
||||||
|
} for k, v in arch_def['repos'].items()},
|
||||||
|
} for arch, arch_def in BASE_DISTROS.items()
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
_current_config = None
|
_current_config = None
|
||||||
|
|
Loading…
Add table
Reference in a new issue