mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-26 11:12:48 +02:00
* remove the proxy role #440 * Separate facts. Make roles more independent from each other move openssl to local tasks move unneeded tasks
15 lines
251 B
YAML
15 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
|