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

- Name: Update package cache (apt)
  apt:
    update_cache: yes
    cache_valid_time: 3600
  when:
    - ansible_distribution|lower == 'ubuntu'

- name: Install Distribution - Release - Machine Prerequisites
  package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
  tags:
    - install-dependencies

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