From db960e32f155412c34807e204add4858090d3e94 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Oct 26 2018 15:18:38 +0000 Subject: Collect the client and server uninstall logs in tests When running the integration tests capture the uninstallation logs as well as the installation logs. Reviewed-By: Christian Heimes --- diff --git a/ipatests/pytest_ipa/integration/tasks.py b/ipatests/pytest_ipa/integration/tasks.py index f0c6138..620ed28 100644 --- a/ipatests/pytest_ipa/integration/tasks.py +++ b/ipatests/pytest_ipa/integration/tasks.py @@ -69,11 +69,12 @@ def setup_server_logs_collecting(host): # IPA install logs host.collect_log(paths.IPASERVER_INSTALL_LOG) + host.collect_log(paths.IPASERVER_UNINSTALL_LOG) host.collect_log(paths.IPACLIENT_INSTALL_LOG) + host.collect_log(paths.IPACLIENT_UNINSTALL_LOG) host.collect_log(paths.IPAREPLICA_INSTALL_LOG) host.collect_log(paths.IPAREPLICA_CONNCHECK_LOG) host.collect_log(paths.IPAREPLICA_CA_INSTALL_LOG) - host.collect_log(paths.IPACLIENT_INSTALL_LOG) host.collect_log(paths.IPASERVER_KRA_INSTALL_LOG) host.collect_log(paths.IPA_CUSTODIA_AUDIT_LOG)