]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mkosi: Fix authselect systemd-homed feature name
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sat, 21 Dec 2024 18:10:42 +0000 (19:10 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sat, 21 Dec 2024 20:03:03 +0000 (21:03 +0100)
The feature name is with-systemd-homed, not with-homed.

mkosi.postinst.chroot

index 0f9e361488a9a05e019c09a363bb138ee2267a83..310a26fa1414055966945cec916ff09892767b65 100755 (executable)
@@ -24,8 +24,8 @@ if command -v authselect >/dev/null; then
 
     authselect select "$PROFILE"
 
-    if authselect list-features "$PROFILE" | grep -q "with-homed"; then
-        authselect enable-feature with-homed
+    if authselect list-features "$PROFILE" | grep -q "with-systemd-homed"; then
+        authselect enable-feature with-systemd-homed
     fi
 fi