From 4d5a3510e4007dbaf7ec5570ec2920bf24f19e88 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Sat, 3 Dec 2016 20:02:05 -0600 Subject: [PATCH] tests: include a playbook to install net-tools for socket checks 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 --- tests/functional/setup.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/functional/setup.yml diff --git a/tests/functional/setup.yml b/tests/functional/setup.yml new file mode 100644 index 000000000..4bdf2304c --- /dev/null +++ b/tests/functional/setup.yml @@ -0,0 +1,11 @@ +--- + +- hosts: all + gather_facts: true + become: yes + tasks: + + - name: install net-tools + package: + name: net-tools + state: present