2017-08-28 11:50:57 +02:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
name: Dummy to gather facts
|
2018-10-11 09:59:16 +02:00
|
|
|
tasks:
|
|
|
|
- name: gather facts even if hosts are excluded.
|
|
|
|
setup:
|
|
|
|
delegate_to: "{{item}}"
|
|
|
|
delegate_facts: True
|
|
|
|
loop: "{{groups['all']}}"
|
|
|
|
|
2017-08-28 11:50:57 +02:00
|
|
|
|
|
|
|
- hosts: cinder-controller
|
|
|
|
become: True
|
|
|
|
roles:
|
|
|
|
- cinder-controller
|