mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-17 21:25:50 +02:00
- Replace ignore_errors: true with failed_when: false in 5 files (main.yml, users.yml, ubuntu.yml, umount.yml, test-wireguard-real-async.yml) - Add pytest.ini configuration for test discovery - Add tests/conftest.py with shared fixtures and mock helpers The failed_when: false pattern is preferred by ansible-lint as it explicitly indicates expected failure handling rather than silently ignoring all errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
71 lines
2.7 KiB
YAML
71 lines
2.7 KiB
YAML
---
|
|
- name: Algo VPN Setup
|
|
hosts: localhost
|
|
become: false
|
|
tasks:
|
|
- name: Playbook dir stat
|
|
stat:
|
|
path: "{{ playbook_dir }}"
|
|
register: _playbook_dir
|
|
|
|
- name: Ensure Ansible is not being run in a world writable directory
|
|
assert:
|
|
that: _playbook_dir.stat.mode|int <= 775
|
|
msg: >
|
|
Ansible is being run in a world writable directory ({{ playbook_dir }}), ignoring it as an ansible.cfg source.
|
|
For more information see https://docs.ansible.com/ansible/devel/reference_appendices/config.html#cfg-in-world-writable-dir
|
|
|
|
- name: Ensure the requirements installed
|
|
debug:
|
|
msg: "{{ '192.168.1.1' | ansible.utils.ipaddr }}"
|
|
failed_when: false
|
|
no_log: true
|
|
register: ipaddr
|
|
|
|
- name: Extract ansible version from pyproject.toml
|
|
set_fact:
|
|
ansible_requirement: "{{ lookup('file', 'pyproject.toml') | regex_search('ansible==[0-9]+\\.[0-9]+\\.[0-9]+') }}"
|
|
|
|
- name: Parse ansible version requirement
|
|
set_fact:
|
|
required_ansible_version:
|
|
op: "{{ ansible_requirement | regex_replace('^ansible\\s*([~>=<]+)\\s*.*$', '\\1') }}"
|
|
ver: "{{ ansible_requirement | regex_replace('^ansible\\s*[~>=<]+\\s*(\\d+\\.\\d+(?:\\.\\d+)?).*$', '\\1') }}"
|
|
when: ansible_requirement is defined
|
|
|
|
- name: Get current ansible package version
|
|
command: uv pip list
|
|
register: uv_package_list
|
|
changed_when: false
|
|
|
|
- name: Extract ansible version from uv package list
|
|
set_fact:
|
|
current_ansible_version: "{{ uv_package_list.stdout | regex_search('ansible\\s+([0-9]+\\.[0-9]+\\.[0-9]+)', '\\1') | first }}"
|
|
|
|
- name: Verify Python meets Algo VPN requirements
|
|
assert:
|
|
that: (ansible_python.version.major|string + '.' + ansible_python.version.minor|string) is version('3.11', '>=')
|
|
msg: >
|
|
Python version is not supported.
|
|
You must upgrade to at least Python 3.11 to use this version of Algo.
|
|
See for more details - https://trailofbits.github.io/algo/troubleshooting.html#python-version-is-not-supported
|
|
|
|
- name: Verify Ansible meets Algo VPN requirements
|
|
assert:
|
|
that:
|
|
- current_ansible_version is version(required_ansible_version.ver, required_ansible_version.op)
|
|
- not ipaddr.failed
|
|
msg: >
|
|
Ansible version is {{ current_ansible_version }}.
|
|
You must update the requirements to use this version of Algo.
|
|
Try to run: uv sync
|
|
|
|
- name: Include prompts playbook
|
|
import_playbook: input.yml
|
|
|
|
- name: Include cloud provisioning playbook
|
|
import_playbook: cloud.yml
|
|
|
|
- name: Include server configuration playbook
|
|
import_playbook: server.yml
|