From: Daan De Meyer Date: Thu, 20 Apr 2023 08:13:37 +0000 (+0200) Subject: mkosi: Use authselect minimal if authselect is installed X-Git-Tag: v254-rc1~668 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe42438427730f39d85f7bf52c5312a9c5c04bcb;p=thirdparty%2Fsystemd.git 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. --- diff --git a/mkosi.postinst b/mkosi.postinst index 24b4666ad71..a71878b9397 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