summaryrefslogtreecommitdiffstats
path: root/src/firstboot/firstboot.c
diff options
context:
space:
mode:
authorMichael Ferrari <nekkodroid404@gmail.com>2024-10-07 11:02:16 +0200
committerMichael Ferrari <nekkodroid404@gmail.com>2024-10-30 20:13:41 +0100
commitd689dd88fd6fdea9777791ca4b06ae5078bbb457 (patch)
treeffc60999edb30d79da220164e22262d29936bcc5 /src/firstboot/firstboot.c
parentmkosi: Update packaging specs to latest (#34951) (diff)
downloadsystemd-d689dd88fd6fdea9777791ca4b06ae5078bbb457.tar.xz
systemd-d689dd88fd6fdea9777791ca4b06ae5078bbb457.zip
firstboot: order non-interactive options last
Diffstat (limited to '')
-rw-r--r--src/firstboot/firstboot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c
index 5bdeecc96c..6bec3ca651 100644
--- a/src/firstboot/firstboot.c
+++ b/src/firstboot/firstboot.c
@@ -1705,15 +1705,15 @@ static int run(int argc, char *argv[]) {
if (r < 0)
return r;
- r = process_machine_id(rfd);
+ r = process_root_account(rfd);
if (r < 0)
return r;
- r = process_root_account(rfd);
+ r = process_kernel_cmdline(rfd);
if (r < 0)
return r;
- r = process_kernel_cmdline(rfd);
+ r = process_machine_id(rfd);
if (r < 0)
return r;