tuned.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.common.is_atomic else 'virtual-guest' }}"
  14. tuned_etc_directory: '/etc/tuned'
  15. tuned_templates_source: '../templates/tuned'
  16. - name: Ensure directory structure exists
  17. file:
  18. state: directory
  19. dest: '{{ tuned_etc_directory }}/{{ item.path }}'
  20. with_filetree: '{{ tuned_templates_source }}'
  21. when: item.state == 'directory'
  22. - name: Ensure files are populated from templates
  23. template:
  24. src: '{{ item.src }}'
  25. dest: '{{ tuned_etc_directory }}/{{ item.path }}'
  26. with_filetree: '{{ tuned_templates_source }}'
  27. when: item.state == 'file'
  28. - name: Make tuned use the recommended tuned profile on restart
  29. file: path=/etc/tuned/active_profile state=absent
  30. - name: Restart tuned service
  31. systemd:
  32. state: restarted
  33. daemon_reload: yes
  34. name: tuned
  35. when: tuned_installed.rc == 0 | bool