mirror of https://github.com/ceph/ceph-ansible.git
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
parent
05be43c546
commit
4d5a3510e4
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
|
||||
- hosts: all
|
||||
gather_facts: true
|
||||
become: yes
|
||||
tasks:
|
||||
|
||||
- name: install net-tools
|
||||
package:
|
||||
name: net-tools
|
||||
state: present
|
Loading…
Reference in New Issue