diff options
Diffstat (limited to 'resources/tools/testbed-setup/ansible/roles/ab')
-rw-r--r-- | resources/tools/testbed-setup/ansible/roles/ab/tasks/main.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/resources/tools/testbed-setup/ansible/roles/ab/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/ab/tasks/main.yaml index 9153198cfb..c422b4d2e0 100644 --- a/resources/tools/testbed-setup/ansible/roles/ab/tasks/main.yaml +++ b/resources/tools/testbed-setup/ansible/roles/ab/tasks/main.yaml @@ -1,9 +1,15 @@ --- # file: roles/ab/tasks/main.yaml +- Name: Update package cache (apt) + apt: + update_cache: yes + cache_valid_time: 3600 + when: + - ansible_distribution|lower == 'ubuntu' + - name: Install Apache ab tools package: name: "{{ packages | flatten(levels=1) }}" state: present - update_cache: true tags: install-ab |