14 lines
No EOL
324 B
YAML
14 lines
No EOL
324 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
force_handlers: true
|
|
|
|
roles:
|
|
- name: fedora
|
|
when: ansible_distribution == 'Fedora'
|
|
and
|
|
ansible_nodename != 'bluefin'
|
|
- name: bluefin
|
|
when: ansible_distribution == 'Fedora'
|
|
and
|
|
ansible_nodename == 'bluefin' |