kolla/tests/playbooks/pre.yml

18 lines
329 B
YAML

---
- hosts: all
become: true
tasks:
- name: Install dbus for debian system
apt: name=dbus
when: ansible_os_family == 'Debian'
- name: Install ansible
pip:
name: ansible
when:
- inventory_hostname == "primary"
- name: Ensure tox is installed
pip:
name: tox