Sfoglia il codice sorgente

Merge pull request #215 from kgullion/patch-1

Allow swap to be completely disabled via `swapoff -a`
pull/216/head
Filip Pytloun 4 anni fa
parent
commit
7c930699ed
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. +10
    -0
      linux/storage/swap.sls

+ 10
- 0
linux/storage/swap.sls Vedi File

@@ -1,6 +1,8 @@
{%- from "linux/map.jinja" import storage with context %}
{%- if storage.enabled %}

{%- if storage.swap.enabled is not defined or storage.swap.enabled %}

{%- for swap_name, swap in storage.swap.items() %}

{%- if swap.enabled %}
@@ -75,4 +77,12 @@ linux_disable_swap_{{ swap.engine }}_{{ swap.device }}:

{%- endfor %}

{%- elif storage.swap.enabled is defined and not storage.swap.enabled %}

linux_disable_swap:
cmd.run:
- name: 'swapoff -a'

{%- endif %}

{%- endif %}

Loading…
Annulla
Salva