mirror of
https://github.com/trailofbits/algo
synced 2024-11-06 03:20:39 +00:00
a7b06058cb
* remove the proxy role #440 * Separate facts. Make roles more independent from each other move openssl to local tasks move unneeded tasks
16 lines
251 B
YAML
16 lines
251 B
YAML
---
|
|
|
|
- name: Check the system
|
|
raw: uname -a
|
|
register: OS
|
|
|
|
- name: Ubuntu pre-tasks
|
|
include: ubuntu.yml
|
|
when: '"Ubuntu" in OS.stdout'
|
|
|
|
- name: FreeBSD pre-tasks
|
|
include: freebsd.yml
|
|
when: '"FreeBSD" in OS.stdout'
|
|
|
|
- include: facts/main.yml
|