summaryrefslogtreecommitdiff
path: root/test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml
diff options
context:
space:
mode:
authorSloane Hertel <shertel@redhat.com>2020-04-14 21:42:20 -0400
committerGitHub <noreply@github.com>2020-04-14 18:42:20 -0700
commit1a89d4f059c21a818306a39ada7f5284ae125237 (patch)
treeb32990ac2351ad57d8b2a45aeb17ed27df4bbe26 /test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml
parent8cccb33d71b0822c46f7076aa28293968eb25438 (diff)
downloadansible-1a89d4f059c21a818306a39ada7f5284ae125237.tar.gz
[2.7] CVE-2020-1739 - provide password securely for subversion module or warn (#68913)
* subversion module - provide password securely when possible or warn (#67829) * subversion module - provide password securely with svn command line option --password-from-stdin when possible, and provide a warning otherwise. * Update lib/ansible/modules/source_control/subversion.py. * Add a test. Co-authored-by: Sam Doran <sdoran@redhat.com> (cherry picked from commit d91658ec0c8434c82c3ef98bfe9eb4e1027a43a3) * Create the OUTPUT_DIR and make sure it is removed at the end * fix sanity test
Diffstat (limited to 'test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml')
-rw-r--r--test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml b/test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml
new file mode 100644
index 0000000000..9be43b4c25
--- /dev/null
+++ b/test/integration/targets/subversion/roles/subversion/tasks/cleanup.yml
@@ -0,0 +1,8 @@
+---
+- name: stop apache after tests
+ shell: "kill -9 $(cat '{{ subversion_server_dir }}/apache.pid')"
+
+- name: remove tmp subversion server dir
+ file:
+ path: '{{ subversion_server_dir }}'
+ state: absent