diff options
author | Michael Ferrari <nekkodroid404@gmail.com> | 2024-10-07 11:02:16 +0200 |
---|---|---|
committer | Michael Ferrari <nekkodroid404@gmail.com> | 2024-10-30 20:13:41 +0100 |
commit | d689dd88fd6fdea9777791ca4b06ae5078bbb457 (patch) | |
tree | ffc60999edb30d79da220164e22262d29936bcc5 /src/firstboot/firstboot.c | |
parent | mkosi: Update packaging specs to latest (#34951) (diff) | |
download | systemd-d689dd88fd6fdea9777791ca4b06ae5078bbb457.tar.xz systemd-d689dd88fd6fdea9777791ca4b06ae5078bbb457.zip |
firstboot: order non-interactive options last
Diffstat (limited to '')
-rw-r--r-- | src/firstboot/firstboot.c | 6 |
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; |