stages/kickstart: set passwords with --iscrypted
The password is assumed to be encrypted so the `--iscrypted` option is required.
This commit is contained in:
parent
b081cf7f64
commit
f5a048e7b4
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue