tests: Updated ipa server installation stdin text

The installator has changed the question sequence so the stdin used for
interactive server installation has to be changed accordingly

Reviewed-By: David Kupka <dkupka@redhat.com>
This commit is contained in:
Oleg Fayans
2016-09-22 15:20:42 +02:00
committed by David Kupka
parent 0c635686dd
commit 38ad864342
-4
View File
@@ -40,14 +40,10 @@ assert_error = tasks.assert_error
def get_install_stdin(cert_passwords=()):
lines = [
'yes', # Existing BIND configuration detected, overwrite? [no]
'', # Server host name (has default)
'', # Confirm domain name (has default)
]
lines.extend(cert_passwords) # Enter foo.p12 unlock password
lines += [
'', # Do you want to configure the reverse zone? [yes]
'', # Please specify the reverse zone name [47.34.10.in-addr.arpa.]
'yes', # Continue with these values?
]
return '\n'.join(lines + [''])