From: Daan De Meyer Date: Tue, 23 Aug 2022 13:04:49 +0000 (+0200) Subject: arch: Modify SigLevel to pacman default X-Git-Tag: v14~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cd0f49efa5a8e4a99cbda133fb0f2783f296fe9;p=thirdparty%2Fmkosi.git arch: Modify SigLevel to pacman default Let's use the same default as pacman uses in Arch --- diff --git a/NEWS.md b/NEWS.md index 03f074643..6b6d5baf8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -19,6 +19,9 @@ and mkosi.conf.d/ respectively. The old names (mkosi.default and mkosi.default.d been removed from the docs but are still supported for backwards compatibility. - `plain_squashfs` type images will now also be named with a `.raw` suffix. - `tar` type images will now respect the `--compress` option. +- Pacman's `SigLevel` option was changed to use the same default value as used on Arch +which is `SigLevel = Required DatabaseOptional`. If this results in keyring errors, +you need to update the keyring by running `pacman-key --populate archlinux`. ## v13 diff --git a/mkosi/__init__.py b/mkosi/__init__.py index c4d744bc0..892683b86 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -2728,7 +2728,7 @@ def install_arch(args: MkosiArgs, root: Path, do_run_build_script: bool) -> None Architecture = auto Color CheckSpace - SigLevel = Required DatabaseOptional TrustAll + SigLevel = Required DatabaseOptional ParallelDownloads = 5 [core]