mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-13 02:24:00 +02:00
* Refactoring, booleans declaration and update users fix * Make server_name more FQDN compatible * Rename variables * Define the default value for store_cakey * Skip a prompt about the SSH user if deploying to localhost * Disable reboot for non-cloud deployments * Enable EC2 volume encryption by default * Add default server value (localhost) for the local installation Delete empty files * Add default region to aws_region_facts * Update docs * EC2 credentials fix * Warnings fix * Update deploy-from-ansible.md * Fix a typo * Remove lightsail from the docs * Disable EC2 encryption by default * rename droplet to server * Disable dependencies * Disable tls_cipher_suite * Convert wifi-exclude to a string. Update-users fix * SSH access congrats fix * 16.04 > 18.04 * Dont ask for the credentials if specified in the environment vars * GCE server name fix
28 lines
568 B
YAML
28 lines
568 B
YAML
---
|
|
- block:
|
|
- name: Check the system
|
|
raw: uname -a
|
|
register: OS
|
|
|
|
- include_tasks: ubuntu.yml
|
|
when: '"Ubuntu" in OS.stdout or "Linux" in OS.stdout'
|
|
|
|
- include_tasks: freebsd.yml
|
|
when: '"FreeBSD" in OS.stdout'
|
|
|
|
- name: Gather additional facts
|
|
import_tasks: facts.yml
|
|
|
|
- name: Sysctl tuning
|
|
sysctl: name="{{ item.item }}" value="{{ item.value }}"
|
|
with_items:
|
|
- "{{ sysctl|default([]) }}"
|
|
tags:
|
|
- always
|
|
|
|
- meta: flush_handlers
|
|
rescue:
|
|
- debug: var=fail_hint
|
|
tags: always
|
|
- fail:
|
|
tags: always
|