From fe42438427730f39d85f7bf52c5312a9c5c04bcb Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 20 Apr 2023 10:13:37 +0200 Subject: [PATCH] mkosi: Use authselect minimal if authselect is installed We dropped this logic from mkosi itself, so let's configure it in our postinst script instead. We also enable the with-homed feature if we can find it. It doesn't exist for the minimal profile yet, but might be added in the future. --- mkosi.postinst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mkosi.postinst b/mkosi.postinst index 24b4666ad7..a71878b939 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -67,3 +67,11 @@ fi if grep -q -e "ID=debian" -e "ID_LIKE=debian" /etc/os-release; then echo "ignore *" >/usr/lib/systemd/system-preset/99-ignore.preset fi + +if command -v authselect >/dev/null; then + authselect select minimal + + if authselect list-features minimal | grep -q "with-homed"; then + authselect enable-feature with-homed + fi +fi -- 2.25.1