stages/kickstart: set passwords with --iscrypted

The password is assumed to be encrypted so the `--iscrypted` option is
required.
This commit is contained in:
Achilleas Koutsou 2021-09-03 12:25:00 +02:00 committed by Christian Kellner
parent b081cf7f64
commit f5a048e7b4

View file

@ -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: