main.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Check for tuned package
  3. command: rpm -q tuned
  4. args:
  5. warn: no
  6. register: tuned_installed
  7. changed_when: false
  8. failed_when: false
  9. - name: Tuned service setup
  10. block:
  11. - name: Set tuned OpenShift variables
  12. set_fact:
  13. openshift_tuned_guest_profile: "{{ 'atomic-guest' if openshift_is_atomic else 'virtual-guest' }}"
  14. - name: Ensure directory structure exists
  15. file:
  16. state: directory
  17. dest: '{{ tuned_etc_directory }}/{{ item.path }}'
  18. with_filetree: '{{ tuned_templates_source }}'
  19. when: item.state == 'directory'
  20. - name: Ensure files are populated from templates
  21. template:
  22. src: '{{ item.src }}'
  23. dest: '{{ tuned_etc_directory }}/{{ item.path }}'
  24. with_filetree: '{{ tuned_templates_source }}'
  25. when: item.state == 'file'
  26. - name: Make tuned use the recommended tuned profile on restart
  27. file:
  28. path: '{{ item }}'
  29. state: absent
  30. with_items:
  31. - /etc/tuned/active_profile
  32. - /etc/tuned/profile_mode
  33. - name: Restart tuned service
  34. systemd:
  35. state: restarted
  36. daemon_reload: yes
  37. name: tuned
  38. when: tuned_installed.rc == 0 | bool