blob: ebb9733ea14fa7bc636650edfd2b2fcb0b1a33b8 (
plain) (
blame)
1
2
3
4
5
6
7
|
---
- name: Include Linux tasks
include_tasks: linux.yml
when: ansible_facts['system'].lower() == "linux"
- name: Include OpenBSD Tasks
include_tasks: openbsd.yml
when: ansible_facts['system'].lower() == "openbsd"
|