summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration
diff options
context:
space:
mode:
authorOleg Fayans <ofayans@redhat.com>2016-09-09 10:58:31 +0200
committerDavid Kupka <dkupka@redhat.com>2016-09-22 15:20:42 +0200
commit38ad864342bb3fcbf65397b763c240f034f3e2c7 (patch)
treec06620e6dddd94ff00f061c37a127ad8e5b637c4 /ipatests/test_integration
parent0c635686ddc6dbba54285a9c7844e12342083b9b (diff)
downloadfreeipa-38ad864342bb3fcbf65397b763c240f034f3e2c7.tar.gz
freeipa-38ad864342bb3fcbf65397b763c240f034f3e2c7.tar.xz
freeipa-38ad864342bb3fcbf65397b763c240f034f3e2c7.zip
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>
Diffstat (limited to 'ipatests/test_integration')
-rw-r--r--ipatests/test_integration/test_caless.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py
index c9d90331b..047917b25 100644
--- a/ipatests/test_integration/test_caless.py
+++ b/ipatests/test_integration/test_caless.py
@@ -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 + [''])