aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/performance_tuning
diff options
context:
space:
mode:
authorTomas Alexy <tomas.alexy@pantheon.tech>2021-02-02 12:37:01 +0100
committerPeter Mikus <pmikus@cisco.com>2021-02-03 13:52:58 +0000
commit917c3d8dc1331db5a9676df16d4187312b0003d8 (patch)
treeea320f0fe077d0c94c9e2cdb6fb26423f366d305 /resources/tools/testbed-setup/ansible/roles/performance_tuning
parentb5073afc4a941ea33ce874e016fe86384ae7a60d (diff)
Ansible: Fix package cache updates
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech> Change-Id: I5c7b2636bde999fef3a60e6cbf2b36db9978a74a
Diffstat (limited to 'resources/tools/testbed-setup/ansible/roles/performance_tuning')
-rw-r--r--resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/main.yaml8
-rw-r--r--resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml8
2 files changed, 14 insertions, 2 deletions
diff --git a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/main.yaml
index c437b40f86..608d3e2505 100644
--- a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/main.yaml
+++ b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/main.yaml
@@ -1,11 +1,17 @@
---
# file: roles/performance_tuning/tasks/main.yaml
+- Name: Update package cache (apt)
+ apt:
+ update_cache: yes
+ cache_valid_time: 3600
+ when:
+ - ansible_distribution|lower == 'ubuntu'
+
- name: Performance Tuning - Install Distribution - Release - Machine Prerequisites
package:
name: "{{ packages | flatten(levels=1) }}"
state: latest
- update_cache: true
tags:
- install-dependencies
diff --git a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
index 310803ca5b..23cca0566e 100644
--- a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
+++ b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
@@ -1,12 +1,18 @@
---
# file: roles/performance_tuning/tasks/turbo_boost.yaml
+- Name: Update package cache (apt)
+ apt:
+ update_cache: yes
+ cache_valid_time: 3600
+ when:
+ - ansible_distribution|lower == 'ubuntu'
+
- name: Turbo Boost - Install msr-tools
package:
name:
- "msr-tools"
state: latest
- update_cache: true
tags:
- turbo-boost