15 lines
323 B
YAML
15 lines
323 B
YAML
|
|
---
|
||
|
|
- name: Configure Linux dev station
|
||
|
|
hosts: linux_dev
|
||
|
|
gather_facts: true
|
||
|
|
|
||
|
|
pre_tasks:
|
||
|
|
- name: Ensure target is Fedora
|
||
|
|
ansible.builtin.assert:
|
||
|
|
that:
|
||
|
|
- ansible_facts['distribution'] == "Fedora"
|
||
|
|
fail_msg: "This playbook supports Fedora hosts only"
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- linux_dev_station
|