kayobe/ansible/apt.yml
Mark Goddard 5e9affb62c Infra VMs: fix some playbook host patterns
The infra-vms group was not added to some playbook host patterns where
it should have been. This change fixes that.

TrivialFix

Change-Id: I5df2918035df7577627fd2bd68417beddbcbf848
2021-11-15 20:54:19 +00:00

13 lines
286 B
YAML

---
- name: Ensure APT is configured
hosts: seed-hypervisor:seed:overcloud:infra-vms
vars:
ansible_python_interpreter: /usr/bin/python3
tags:
- apt
tasks:
- name: include apt role
include_role:
name: apt
when: ansible_facts.os_family == 'Debian'