소스 검색

Allow swap to be completely disabled

pull/218/head
Kyle Gullion 4 년 전
부모
커밋
61f6972ac8
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…
취소
저장