aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/trex/tasks/main.yaml
blob: d0509f7544fcb027bc57c2618c247d938d8ccf5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
# file: tasks/main.yaml

- name: Update Package Cache (APT)
  ansible.builtin.apt:
    update_cache: true
    cache_valid_time: 3600
  when:
    - ansible_distribution|lower == 'ubuntu'
  tags:
    - trex-inst-prerequisites

- name: Prerequisites
  ansible.builtin.package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
  tags:
    - trex-inst-prerequisites

- name: Multiple T-Rex Versions
  include_tasks: deploy_block.yaml
  loop: "{{ trex_version }}"
  tags:
    - trex-inst