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 <aschoen@redhat.com>
pull/1150/head
Andrew Schoen 2016-12-03 20:02:05 -06:00
parent 05be43c546
commit 4d5a3510e4
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
- hosts: all
gather_facts: true
become: yes
tasks:
- name: install net-tools
package:
name: net-tools
state: present