From: Michael Ferrari Date: Mon, 7 Oct 2024 09:02:16 +0000 (+0200) Subject: firstboot: order non-interactive options last X-Git-Tag: v257-rc1~85^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d689dd88fd6fdea9777791ca4b06ae5078bbb457;p=thirdparty%2Fsystemd.git firstboot: order non-interactive options last --- diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 5bdeecc96ce..6bec3ca6510 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;