]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
mkosi: fix grammar in comment
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 15 Oct 2021 10:13:03 +0000 (12:13 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 15 Oct 2021 15:24:30 +0000 (17:24 +0200)
mkosi/__init__.py

index 2d2d4b81e369df895f9fe13e16cca58c551dcae7..0015138d1444b8a0f701e678f0da6f4135749cac 100644 (file)
@@ -2034,9 +2034,8 @@ def install_clear(args: CommandLineArguments, root: Path, do_run_build_script: b
 
     root.joinpath("etc/resolv.conf").symlink_to("../run/systemd/resolve/resolv.conf")
 
-    # Clear Linux doesn't have a /etc/shadow at install time, it gets
-    # created when the root first login. To set the password via
-    # mkosi, create one.
+    # Clear Linux doesn't have a /etc/shadow at install time, it gets created
+    # when the root first logs in. To set the password via mkosi, create one.
     if not do_run_build_script and args.password is not None:
         shadow_file = root / "etc/shadow"
         shadow_file.write_text("root::::::::\n")