Infra: Move probes under ansible instead of terraform
[csit.git] / resources / tools / testbed-setup / ansible / roles / performance_tuning / tasks / turbo_boost.yaml
index a487209..11f0e32 100644 (file)
@@ -1,33 +1,44 @@
 ---
 # file: roles/performance_tuning/tasks/turbo_boost.yaml
 
-- name: Turbo boost - Install msr-tools
+- name: Inst - Update Package Cache (APT)
   apt:
-    name:
-      - 'msr-tools'
-    state: 'present'
+    update_cache: yes
     cache_valid_time: 3600
-    install_recommends: False
-  tags: turbo-boost
+  when:
+    - ansible_distribution|lower == 'ubuntu'
+  tags:
+    - turbo-inst-prerequisites
+
+- name: Install msr-tools
+  package:
+    name:
+      - "msr-tools"
+    state: latest
+  tags:
+    - turbo-inst-prerequisites
 
-- name: Turbo boost - Load msr by default
+- name: Load msr By Default
   lineinfile:
-    path: '/etc/modules'
-    state: 'present'
-    line: 'msr'
-  tags: turbo-boost
+    path: "/etc/modules"
+    state: "present"
+    line: "msr"
+  tags:
+    - turbo-boost
 
-- name: Turbo boost - Custom startup service hook
+- name: 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
+    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
+- name: Custom Startup Service Hook Enable
   service:
-    name: 'disable-turbo-boost'
+    name: "disable-turbo-boost"
     enabled: yes
-  tags: turbo-boost
+  tags:
+    - turbo-boost