aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2019-10-16 16:25:41 +0000
committerPeter Mikus <pmikus@cisco.com>2019-10-17 08:14:25 +0000
commitd3e0654a57aa958aaef1906e4a759e521655a86b (patch)
treecc0548cf87706dee62451a07add29bbb398e30eb /resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
parentbf0ea7aee82f32752c4b1a3abc1f60294fbc1f40 (diff)
Ansible: Role cleanup
+ Separate and reuse role (better naming) + Cleanup in naming + Introduce defaults that can be overriden Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: Iedaf7caba1d05a35a6f61cd21a483cdbc0073d32
Diffstat (limited to 'resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml')
-rw-r--r--resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml33
1 files changed, 33 insertions, 0 deletions
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
new file mode 100644
index 0000000000..a4872091a5
--- /dev/null
+++ b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml
@@ -0,0 +1,33 @@
+---
+# file: roles/performance_tuning/tasks/turbo_boost.yaml
+
+- name: Turbo boost - Install msr-tools
+ apt:
+ name:
+ - 'msr-tools'
+ state: 'present'
+ cache_valid_time: 3600
+ install_recommends: False
+ tags: turbo-boost
+
+- name: Turbo boost - Load msr by default
+ lineinfile:
+ path: '/etc/modules'
+ state: 'present'
+ line: 'msr'
+ tags: turbo-boost
+
+- name: Turbo boost - Custom startup service hook
+ copy:
+ src: 'files/disable-turbo-boost.service'
+ dest: '/etc/systemd/system/disable-turbo-boost.service'
+ owner: 'root'
+ group: 'root'
+ mode: '0644'
+ tags: turbo-boost
+
+- name: Turbo boost - Custom startup service hook enable
+ service:
+ name: 'disable-turbo-boost'
+ enabled: yes
+ tags: turbo-boost