浏览代码

current

master
父节点
当前提交
1e5fc618cf
共有 1 个文件被更改,包括 19 次插入20 次删除
  1. +19
    -20
      tasks/main.yml

+ 19
- 20
tasks/main.yml 查看文件

@@ -10,7 +10,15 @@
with_items:
- cryptsetup
when: ansible_os_family == "Debian"

- name: close
command:
cryptsetup close
{{ item.name }}
with_items: "{{ dmcrypt_devices }}"
when:
dmcrypt_devices_state == "closed"

- name: ramdisk
mount:
src: ram
@@ -34,33 +42,23 @@
dmcrypt_devices_state == "wiped" or
dmcrypt_devices_state == "opened"

- name: keyfile
copy:
content: "{{ item.key | default( lookup('pipe','pass show '+dmcrypt_key_pass_folder+'/'+item.name) ) }}"
dest: /ram/dmcrypt_devices/{{ item.name }}
- name: shred device
command: shred --iterations={{ dmcrypt_devices_shred_iterations }} {{ item.device }}
with_items: "{{ dmcrypt_devices }}"
when:
dmcrypt_devices_state == "formated" or
dmcrypt_devices_state == "wiped" or
dmcrypt_devices_state == "opened"
dmcrypt_devices_state == "erased"

- name: close
command:
cryptsetup close
{{ item.name }}
with_items: "{{ dmcrypt_devices }}"
when:
#dmcrypt_devices_state == "formated" or
#dmcrypt_devices_state == "wiped" or
#dmcrypt_devices_state == "erased" or
dmcrypt_devices_state == "closed"

- name: shred device
command: shred --iterations={{ dmcrypt_devices_shred_iterations }} {{ item.device }}
- name: keyfile
copy:
content: "{{ item.key }}"
dest: /ram/dmcrypt_devices/{{ item.name }}
with_items: "{{ dmcrypt_devices }}"
when:
dmcrypt_devices_state == "formated" or
dmcrypt_devices_state == "wiped" or
dmcrypt_devices_state == "erased"
dmcrypt_devices_state == "opened"

- name: luksFormat
command:
@@ -79,6 +77,7 @@
command:
cryptsetup open --type luks
--key-file=/ram/dmcrypt_devices/{{ item.name }}
{{ item.discard | default(false) | ternary('--allow-discards','') }}
{{ item.device }}
{{ item.name }}
with_items: "{{ dmcrypt_devices }}"


正在加载...
取消
保存