You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
algo/playbooks/common.yml

16 lines
293 B
YAML

---
- name: Check the system
raw: uname -a
register: OS
- name: Ubuntu pre-tasks
include_tasks: ubuntu.yml
when: '"Ubuntu" in OS.stdout or "Linux" in OS.stdout'
- name: FreeBSD pre-tasks
include_tasks: freebsd.yml
when: '"FreeBSD" in OS.stdout'
- include_tasks: facts/main.yml