]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: include a playbook to install net-tools for socket checks
authorAndrew Schoen <aschoen@redhat.com>
Sun, 4 Dec 2016 02:02:05 +0000 (20:02 -0600)
committerAndrew Schoen <aschoen@redhat.com>
Tue, 6 Dec 2016 20:56:18 +0000 (14:56 -0600)
This playbook could be used in the future to install anything else we
need on these nodes for testing purposes.

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
tests/functional/setup.yml [new file with mode: 0644]

diff --git a/tests/functional/setup.yml b/tests/functional/setup.yml
new file mode 100644 (file)
index 0000000..4bdf230
--- /dev/null
@@ -0,0 +1,11 @@
+---
+
+- hosts: all
+  gather_facts: true
+  become: yes
+  tasks:
+
+   - name: install net-tools
+     package:
+       name: net-tools
+       state: present