Jiri Broulik 8 роки тому
джерело
коміт
f8f55a2fcc
3 змінених файлів з 27 додано та 0 видалено
  1. +15
    -0
      README.rst
  2. +9
    -0
      linux/system/cpu.sls
  3. +3
    -0
      linux/system/init.sls

+ 15
- 0
README.rst Переглянути файл

@@ -204,6 +204,21 @@ Systcl kernel parameters
net.ipv4.tcp_keepalive_time: 30
net.ipv4.tcp_keepalive_probes: 8


CPU
~~~

Disable ondemand cpu mode service:

.. code-block:: yaml

linux:
system:
cpu:
governor: performance



Repositories
~~~~~~~~~~~~


+ 9
- 0
linux/system/cpu.sls Переглянути файл

@@ -0,0 +1,9 @@
{%- from "linux/map.jinja" import system with context %}
{%- if system.cpu.governor is defined %}

ondemand_service_disable:
service.dead:
- name: ondemand
- enable: false

{%- endif %}

+ 3
- 0
linux/system/init.sls Переглянути файл

@@ -12,6 +12,9 @@ include:
{%- if system.kernel is defined %}
- linux.system.kernel
{%- endif %}
{%- if system.cpu is defined %}
- linux.system.cpu
{%- endif %}
{%- if system.locale|length > 0 %}
- linux.system.locale
{%- endif %}

Завантаження…
Відмінити
Зберегти