diff options
author | Christian Pointner <equinox@spreadspace.org> | 2021-06-19 23:14:53 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2021-06-19 23:14:53 +0200 |
commit | 3ff4400844a08305e313d2aae058e86c20a74f5b (patch) | |
tree | d4f8d2a0beffcca98d95cc544b0f91d49979e5ae /roles/apps/etherpad-lite/tasks/main.yml | |
parent | zfs/syncoid: inhibit autosuspend if scrubbing is in progress (diff) |
add workaround for check-mode of zfs module
Diffstat (limited to 'roles/apps/etherpad-lite/tasks/main.yml')
-rw-r--r-- | roles/apps/etherpad-lite/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/apps/etherpad-lite/tasks/main.yml b/roles/apps/etherpad-lite/tasks/main.yml index ef6a54d4..072a6c09 100644 --- a/roles/apps/etherpad-lite/tasks/main.yml +++ b/roles/apps/etherpad-lite/tasks/main.yml @@ -6,7 +6,7 @@ zfs: name: "{{ etherpad_lite_zfs.pool }}/{{ etherpad_lite_zfs.name }}" state: present - extra_zfs_properties: "{{ etherpad_lite_zfs.properties | default(omit) }}" + extra_zfs_properties: "{{ etherpad_lite_zfs.properties | dehumanize_zfs_properties | default(omit) }}" - name: create zfs volumes for instances loop: "{{ etherpad_lite_instances | dict2items }}" @@ -15,7 +15,7 @@ zfs: name: "{{ etherpad_lite_zfs.pool }}/{{ etherpad_lite_zfs.name }}/{{ item.key }}" state: present - extra_zfs_properties: "{{ item.value.zfs_properties | default(omit) }}" + extra_zfs_properties: "{{ item.value.zfs_properties | dehumanize_zfs_properties | default(omit) }}" - name: configure etherpad_lite base bath set_fact: |