From 38ad864342bb3fcbf65397b763c240f034f3e2c7 Mon Sep 17 00:00:00 2001 From: Oleg Fayans Date: Sep 22 2016 13:20:42 +0000 Subject: 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 --- diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py index c9d9033..047917b 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 + [''])