summaryrefslogtreecommitdiff
path: root/roles/streaming/rtmp/streamer/tasks/zfs.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-04-04 04:09:17 +0200
committerChristian Pointner <equinox@spreadspace.org>2021-04-04 04:09:17 +0200
commitaacbfb831930a4546e373121785065edc1b35d39 (patch)
tree6a6df055a694ba99842854b7cc05bd9d09792024 /roles/streaming/rtmp/streamer/tasks/zfs.yml
parentadd storage/lvm/groups (diff)
port streaming/rtmp/streamer to new storage volume roles
Diffstat (limited to 'roles/streaming/rtmp/streamer/tasks/zfs.yml')
-rw-r--r--roles/streaming/rtmp/streamer/tasks/zfs.yml14
1 files changed, 0 insertions, 14 deletions
diff --git a/roles/streaming/rtmp/streamer/tasks/zfs.yml b/roles/streaming/rtmp/streamer/tasks/zfs.yml
deleted file mode 100644
index 74889cbc..00000000
--- a/roles/streaming/rtmp/streamer/tasks/zfs.yml
+++ /dev/null
@@ -1,14 +0,0 @@
----
-- name: create zfs dataset
- zfs:
- name: "{{ rtmp_streamer_zfs.pool }}/{{ rtmp_streamer_zfs.name }}"
- state: present
- extra_zfs_properties: "{{ rtmp_streamer_zfs.properties | default(omit) }}"
-
-- name: bind mount filesytem
- mount:
- src: "{{ zfs_pools[rtmp_streamer_zfs.pool].mountpoint }}/{{ rtmp_streamer_zfs.name }}"
- path: "{{ rtmp_streamer_base_path }}"
- fstype: none
- opts: bind,x-systemd.automount,nofail
- state: mounted