瀏覽代碼

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 %}
{{ 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 %}

Loading…
取消
儲存