Files
a13labs.infra/ansible/playbook_linux_dev_station.yml
T

15 lines
323 B
YAML
Raw Normal View History

---
- 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