mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-26 11:12:48 +02:00
* Refactoring, Linting and additional tests * Vultr: Undefined variable and deprecation notes fix * Travis-CI enable linters * Azure: Update python requirements * Update main.yml * Update install.sh * Add missing roles to ansible-lint * Linting for skipped roles * add .ansible-lint config
20 lines
617 B
YAML
20 lines
617 B
YAML
---
|
|
- hosts: localhost
|
|
become: false
|
|
tasks:
|
|
- name: Verify Ansible meets Drupal VM's version requirements.
|
|
assert:
|
|
that: "ansible_version.full is version('2.7.10', '==')"
|
|
msg: >
|
|
Ansible version is {{ ansible_version.full }}.
|
|
You must update the requirements to use this version of Algo.
|
|
Try to run python -m pip install -U -r requirements.txt
|
|
|
|
- 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
|