mirror of
https://github.com/trailofbits/algo
synced 2024-11-18 09:25:38 +00:00
02427910de
* Move to ansible-2.4.3 * Add Lightsail support #623 * Fixing the EC2 deployment * Scaleway integration #623 * OpenStack cloud provider (DreamCompute optimised) #623 * Remove the security role * Enable unattended-upgrades for clouds * New requirements to make Azure and GCE work
16 lines
269 B
YAML
16 lines
269 B
YAML
---
|
|
|
|
- name: Check the system
|
|
raw: uname -a
|
|
register: OS
|
|
|
|
- name: Ubuntu pre-tasks
|
|
include_tasks: ubuntu.yml
|
|
when: '"Ubuntu" in OS.stdout'
|
|
|
|
- name: FreeBSD pre-tasks
|
|
include_tasks: freebsd.yml
|
|
when: '"FreeBSD" in OS.stdout'
|
|
|
|
- include_tasks: facts/main.yml
|