23 lines
379 B
Plaintext
23 lines
379 B
Plaintext
# A implémenter
|
|
# https://www.unixsysadmin.com/fedora-on-a-thinkpad-p1/
|
|
{% if grains['kernel'] == 'Linux' %}
|
|
{% if grains['virtual'] == 'physical' %}
|
|
Installons tlp:
|
|
pkg.installed:
|
|
- pkgs:
|
|
- tlp
|
|
- tlp-rdw
|
|
|
|
tlp:
|
|
service.running:
|
|
- enable: True
|
|
|
|
{%else %}
|
|
Supprimons tlp:
|
|
pkg.removed:
|
|
- pkgs:
|
|
- tlp
|
|
- tlp-rdw
|
|
|
|
{%endif%}
|
|
{%endif%} |