config: add gpg dir to chroot paths
This commit is contained in:
parent
3034afe5a8
commit
4a48e78ec0
3 changed files with 3 additions and 0 deletions
|
@ -67,6 +67,7 @@ class PathsSection(DictScheme):
|
||||||
images: str
|
images: str
|
||||||
ccache: str
|
ccache: str
|
||||||
rust: str
|
rust: str
|
||||||
|
gpg: str
|
||||||
|
|
||||||
|
|
||||||
class ProfilesSection(DictScheme):
|
class ProfilesSection(DictScheme):
|
||||||
|
|
|
@ -44,6 +44,7 @@ CONFIG_DEFAULTS_DICT = {
|
||||||
'images': os.path.join('%cache_dir%', 'images'),
|
'images': os.path.join('%cache_dir%', 'images'),
|
||||||
'ccache': os.path.join('%cache_dir%', 'ccache'),
|
'ccache': os.path.join('%cache_dir%', 'ccache'),
|
||||||
'rust': os.path.join('%cache_dir%', 'rust'),
|
'rust': os.path.join('%cache_dir%', 'rust'),
|
||||||
|
'gpg': os.path.join('%cache_dir%', 'gpg'),
|
||||||
},
|
},
|
||||||
'profiles': {
|
'profiles': {
|
||||||
'current': 'default',
|
'current': 'default',
|
||||||
|
|
|
@ -156,6 +156,7 @@ CHROOT_PATHS = {
|
||||||
'packages': '/packages',
|
'packages': '/packages',
|
||||||
'pkgbuilds': '/pkgbuilds',
|
'pkgbuilds': '/pkgbuilds',
|
||||||
'images': '/images',
|
'images': '/images',
|
||||||
|
'gpg': '/gpg',
|
||||||
}
|
}
|
||||||
|
|
||||||
WRAPPER_TYPES = [
|
WRAPPER_TYPES = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue