From f5a048e7b4574f975925e486616b02931c7b4aa9 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Fri, 3 Sep 2021 12:25:00 +0200 Subject: [PATCH] stages/kickstart: set passwords with --iscrypted The password is assumed to be encrypted so the `--iscrypted` option is required. --- stages/org.osbuild.kickstart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.kickstart b/stages/org.osbuild.kickstart index d6468a83..db88e9fe 100755 --- a/stages/org.osbuild.kickstart +++ b/stages/org.osbuild.kickstart @@ -156,7 +156,7 @@ def make_users(users: Dict) -> List[str]: password = opts.get("password") if password is not None: - arguments += ["--password", password or '""'] + arguments += ["--password", password or '""', "--iscrypted"] shell = opts.get("shell") if shell: