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

- name: Inst - Update Package Cache (APT)
  apt:
    update_cache: yes
    cache_valid_time: 3600
  when:
    - ansible_distribution|lower == 'ubuntu'
  tags:
    - ab-inst-prerequisites

- name: Inst - Apache ab tools
  package:
    name: "{{ packages | flatten(levels=1) }}"
    state: present
  tags:
    - ab-inst