We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33ff59 commit f94afe5Copy full SHA for f94afe5
1 file changed
mkosi/distribution/arch.py
@@ -82,6 +82,9 @@ def keyring(cls, context: Context) -> None:
82
@classmethod
83
def setup(cls, context: Context) -> None:
84
Pacman.setup(context, list(cls.repositories(context)))
85
+ # pacman's keyring needs to be initialized and pre-seeded with any drop-in keys prior
86
+ # to its first sync, otherwise it'll refuse to continue when using custom repositories
87
+ # due to missing signatures.
88
Pacman.keyring(context)
89
90
0 commit comments