blob: 85003d583d77194841c2061dcd28d0821230da18 (
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-ab
|