5e9affb62c
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
13 lines
286 B
YAML
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'
|