tuned - install everywhere, custom profile only on EL. mq-deadline support limitation

This commit is contained in:
Josh Lay 2020-06-03 21:35:10 -05:00
parent 2db2453f33
commit 4af74a57a3
2 changed files with 20 additions and 20 deletions

View file

@ -1,24 +1,4 @@
---
- name: install packages
package:
name: "{{ item }}"
state: latest
with_items:
- tuned
- tuned-utils
- name: start service
service:
name: tuned
enabled: yes
state: started
- name: get active tuned profile
command: /usr/sbin/tuned-adm active
register: tuned_active
changed_when: false
ignore_errors: true
- name: create custom tuned profile directory
file:
path: "/etc/tuned/{{ tuned_custom_profile.name }}"

View file

@ -1,5 +1,25 @@
---
- name: install packages
package:
name: "{{ item }}"
state: latest
with_items:
- tuned
- tuned-utils
- name: start service
service:
name: tuned
enabled: yes
state: started
- name: get active tuned profile
command: /usr/sbin/tuned-adm active
register: tuned_active
changed_when: false
ignore_errors: true
- name: deploy {{ tuned_custom_profile }} based on {{ tuned_base_profile }}
include: configure-custom-profile.yml
when: (ansible_distribution in ["CentOS" , "Red Hat Enterprise Linux", "Fedora" ] and not is_atomic)