]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
firstboot: order non-interactive options last
authorMichael Ferrari <nekkodroid404@gmail.com>
Mon, 7 Oct 2024 09:02:16 +0000 (11:02 +0200)
committerMichael Ferrari <nekkodroid404@gmail.com>
Wed, 30 Oct 2024 19:13:41 +0000 (20:13 +0100)
src/firstboot/firstboot.c

index 5bdeecc96ce33276f6c3c96e31b36d25f0c70fad..6bec3ca65104f4ce5b7392e40d899153c7170f85 100644 (file)
@@ -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;