summaryrefslogtreecommitdiffstats
path: root/vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml
diff options
context:
space:
mode:
authorSachin Prabhu <sprabhu@redhat.com>2020-05-29 16:22:42 +0100
committerAnoop C S <anoopcs@cryptolab.net>2020-06-17 17:01:24 +0530
commitccbb4faa8111f2b971b1b2908f4e32d95cfade86 (patch)
treec484feac4220c8d367e559b454f4092bc3da5e00 /vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml
parent174c5c8f629edd475c3442801bb3c56b1cc8b3c7 (diff)
downloadsamba-integration-ccbb4faa8111f2b971b1b2908f4e32d95cfade86.tar.gz
samba-integration-ccbb4faa8111f2b971b1b2908f4e32d95cfade86.tar.xz
samba-integration-ccbb4faa8111f2b971b1b2908f4e32d95cfade86.zip
Remove auto generated mount points
Various combinations of test mount points were generated for the clients with the expectation that they will be useful when testing. Since then, we have created a test runner to run tests. These mounts are better handled from the test runner instead. Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
Diffstat (limited to 'vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml')
-rw-r--r--vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml b/vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml
deleted file mode 100644
index 58d2b2f..0000000
--- a/vagrant/ansible/roles/client.prep/tasks/mkdir_usermounts.yml
+++ /dev/null
@@ -1,18 +0,0 @@
----
-- name: Create user mount directories
- file:
- path: "/test-mnt/testhost{{ testhost_num }}/{{item.username}}"
- state: directory
- owner: root
- group: root
- mode: 0755
- with_items: "{{ samba_users }}"
-
-- name: Add user mounts
- mount:
- path: "/test-mnt/testhost{{ testhost_num }}/{{item.username}}"
- src: "//testhost{{ testhost_num }}/gluster-vol"
- fstype: cifs
- opts: "username={{ item.username }},password={{ item.password }},vers=2.1"
- state: present
- with_items: "{{ samba_users }}"