diff options
author | Christian Pointner <equinox@spreadspace.org> | 2021-04-04 19:34:15 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2021-04-04 19:34:15 +0200 |
commit | 440c0680719c15eac4930e0b5b93174014919b62 (patch) | |
tree | f3dffb56fc594167f19483915f875b1b4edea1a9 /roles/apps/etherpad-lite | |
parent | fix glt encoder lvm config (diff) |
use path_join filter to build zfs mountpoints
Diffstat (limited to 'roles/apps/etherpad-lite')
-rw-r--r-- | roles/apps/etherpad-lite/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/apps/etherpad-lite/tasks/main.yml b/roles/apps/etherpad-lite/tasks/main.yml index caf53efd..ef6a54d4 100644 --- a/roles/apps/etherpad-lite/tasks/main.yml +++ b/roles/apps/etherpad-lite/tasks/main.yml @@ -19,7 +19,7 @@ - name: configure etherpad_lite base bath set_fact: - etherpad_lite_base_path: "{{ zfs_pools[etherpad_lite_zfs.pool].mountpoint }}/{{ etherpad_lite_zfs.name }}" + etherpad_lite_base_path: "{{ (zfs_pools[etherpad_lite_zfs.pool].mountpoint, etherpad_lite_zfs.name) | path_join }}" - name: create instance subdirectories |