diff options
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; |