]> 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)
committerLuca Boccassi <luca.boccassi@gmail.com>
Tue, 7 Jan 2025 18:26:13 +0000 (18:26 +0000)
The feature name is with-systemd-homed, not with-homed.

(cherry picked from commit 5495b11360d649dc8810d59b096231ba596e9436)

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