瀏覽代碼

Allow swap to be completely disabled

pull/215/head
Kyle Gullion 4 年之前
父節點
當前提交
d76caca091
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 10 行新增0 行删除
  1. +10
    -0
      linux/storage/swap.sls

+ 10
- 0
linux/storage/swap.sls 查看文件

@@ -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…
取消
儲存