Browse Source

Automatic profile setting for tuned 2.9

Tuned 2.9 introduces automatic and manual profile selection.
If there is a file /etc/tuned/profile_mode containing "manual"
on a system with tuned 2.9, without this PR the appropriate OCP
profiles will not be set.  This PR removes the file prior to
tuned restart, in addition to /etc/tuned/active_profile to
make the tuned profile selection automatic.
Jiri Mencak 7 years ago
parent
commit
fa25a734d6
1 changed files with 6 additions and 1 deletions
  1. 6 1
      roles/tuned/tasks/main.yml

+ 6 - 1
roles/tuned/tasks/main.yml

@@ -28,7 +28,12 @@
     when: item.state == 'file'
 
   - name: Make tuned use the recommended tuned profile on restart
-    file: path=/etc/tuned/active_profile state=absent
+    file:
+      path: '{{ item }}'
+      state: absent
+    with_items:
+    - /etc/tuned/active_profile
+    - /etc/tuned/profile_mode
 
   - name: Restart tuned service
     systemd: