소스 검색

crypttab fully configurable

master
부모
커밋
14b69130b3
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      templates/crypttab.j2

+ 4
- 1
templates/crypttab.j2 파일 보기

@@ -1,3 +1,6 @@
{{ansible_managed|comment}}

# <name> <device> <password> <options>
{% for cryptdev in dmcrypt_devices %} {% for cryptdev in dmcrypt_devices %}
{{ cryptdev.name }} {{ cryptdev.device }} none luks{{ cryptdev.discard | default(false) | ternary(',discard','') }}
{{ cryptdev.name }} {{ cryptdev.device }} {{ cryptdev.password | default('none') }} {{ cryptdev.options | default('luks') }}
{% endfor %} {% endfor %}

불러오는 중...
취소
저장