Procházet zdrojové kódy

Merge pull request #114 from teoyaomiqui/master

adding check before writing to core file
pull/115/head
Filip Pytloun před 7 roky
rodič
revize
22ee07d07e
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      linux/system/cpu.sls

+ 4
- 1
linux/system/cpu.sls Zobrazit soubor

@@ -32,11 +32,14 @@ ondemand_service_disable:

{% for cpu_core in range(salt['grains.get']('num_cpus', 1)) %}

{% set core_key = 'devices/system/cpu/cpu' + cpu_core|string + '/cpufreq/scaling_governor' %}
{% if salt['file.file_exists']('/sys/'+ core_key) %}
governor_write_sysfs_cpu_core_{{ cpu_core }}:
module.run:
- name: sysfs.write
- key: devices/system/cpu/cpu{{ cpu_core }}/cpufreq/scaling_governor
- key: {{ core_key }}
- value: {{ system.cpu.governor }}
{% endif %}

{%- endfor %}


Načítá se…
Zrušit
Uložit