mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-11 11:47:08 +02:00
* Bump ansible from 2.9.20 to 4.4.0 Bumps [ansible](https://github.com/ansible/ansible) from 2.9.20 to 4.4.0. - [Release notes](https://github.com/ansible/ansible/releases) - [Commits](https://github.com/ansible/ansible/commits) --- updated-dependencies: - dependency-name: ansible dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * ansible core * aadd vagrant and fix jinja * bool variable fix * ec2 task deprecation * bool fix * azure requirements fix * cloudscale fix * scaleway fix * openstack fixes Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jack Ivanov <e601809@gmail.com> Co-authored-by: Jack Ivanov <17044561+jackivanov@users.noreply.github.com>
30 lines
550 B
YAML
30 lines
550 B
YAML
---
|
|
- name: Check the system
|
|
raw: uname -a
|
|
register: OS
|
|
changed_when: false
|
|
tags:
|
|
- update-users
|
|
|
|
- fail:
|
|
when: cloud_test|default(false)|bool
|
|
|
|
- include_tasks: ubuntu.yml
|
|
when: '"Ubuntu" in OS.stdout or "Linux" in OS.stdout'
|
|
tags:
|
|
- update-users
|
|
|
|
- include_tasks: freebsd.yml
|
|
when: '"FreeBSD" in OS.stdout'
|
|
tags:
|
|
- update-users
|
|
|
|
- name: Sysctl tuning
|
|
sysctl: name="{{ item.item }}" value="{{ item.value }}"
|
|
when: item.item
|
|
with_items:
|
|
- "{{ sysctl|default([]) }}"
|
|
tags:
|
|
- always
|
|
|
|
- meta: flush_handlers
|