From f836ee7b9c06f282e71dacbefb6f7f34b3addddc Mon Sep 17 00:00:00 2001 From: Oleg Fayans Date: Wed, 30 Mar 2016 12:34:12 +0200 Subject: [PATCH] Added a kdestroy call to clean ccache at master/client uninstallation https://fedorahosted.org/freeipa/ticket/5741 Reviewed-By: Martin Babinsky Reviewed-By: Rob Crittenden --- ipatests/test_integration/tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipatests/test_integration/tasks.py b/ipatests/test_integration/tasks.py index 93dfac1c6..67ee27a0f 100644 --- a/ipatests/test_integration/tasks.py +++ b/ipatests/test_integration/tasks.py @@ -171,6 +171,8 @@ def fix_apache_semaphores(master): def unapply_fixes(host): restore_files(host) restore_hostname(host) + # Clean ccache to prevent issues like 5741 + host.run_command(['kdestroy', '-A']) # Clean up the test directory host.run_command(['rm', '-rvf', host.config.test_dir])