mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
nfs.py: fix user creation
nfs.py calls "ipa user-add" without inputting the password twice leading to a timeout. Input password twice then. Signed-off-by: François Cami <fcami@redhat.com> Reviewed-By: Alexander Bokovoy <abbra@users.noreply.github.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
parent
e08a340aed
commit
3a233a907a
@ -117,7 +117,7 @@ class TestNFS(TestInit):
|
||||
"ipa", "user-add",
|
||||
"%s" % user, "--first", "%s" % user,
|
||||
"--last", "%s" % users[user],
|
||||
'--password'], stdin_text=temp_pass
|
||||
'--password'], stdin_text="%s\n%s\n" % (temp_pass, temp_pass)
|
||||
)
|
||||
self.master.run_command(["kdestroy", "-A"])
|
||||
password = "Secret123"
|
||||
|
Loading…
Reference in New Issue
Block a user