role: template common script, for header comment
This commit is contained in:
parent
81b5c762d6
commit
ca355a0ab9
1 changed files with 11 additions and 3 deletions
|
@ -15,7 +15,6 @@
|
||||||
- {name: 'power-profiles-daemon', state: 'absent'}
|
- {name: 'power-profiles-daemon', state: 'absent'}
|
||||||
- {name: 'tuned', state: 'present'}
|
- {name: 'tuned', state: 'present'}
|
||||||
when:
|
when:
|
||||||
- ('power-profiles-daemon' in ansible_facts.packages) or ('tuned' not in ansible_facts.packages)
|
|
||||||
- ansible_distribution == 'Fedora'
|
- ansible_distribution == 'Fedora'
|
||||||
- ansible_distribution_major_version|int > 35
|
- ansible_distribution_major_version|int > 35
|
||||||
register: fed_ppdtuned_swap
|
register: fed_ppdtuned_swap
|
||||||
|
@ -47,8 +46,8 @@
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Copy 'common' AMDGPU script for all profiles
|
- name: Copy 'common' AMDGPU script for all profiles
|
||||||
ansible.builtin.copy:
|
ansible.builtin.template:
|
||||||
src: profile-common.sh
|
src: profile-common.sh.j2
|
||||||
dest: "/etc/tuned/{{ item.1 }}-amdgpu-{{ item.0 }}/amdgpu-common.sh"
|
dest: "/etc/tuned/{{ item.1 }}-amdgpu-{{ item.0 }}/amdgpu-common.sh"
|
||||||
mode: "0644" # sourced, doesn't require executable bit
|
mode: "0644" # sourced, doesn't require executable bit
|
||||||
owner: root
|
owner: root
|
||||||
|
@ -88,3 +87,12 @@
|
||||||
name: tuned
|
name: tuned
|
||||||
enabled: true
|
enabled: true
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Copy gamemode memlock limits.d booster
|
||||||
|
become: true
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: etc.security.limits.d.99-gamemode-memlock.conf
|
||||||
|
dest: /etc/security/limits.d/99-gamemode-memlock.conf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0644'
|
||||||
|
|
Loading…
Reference in a new issue