block-device/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Sun, 05 Feb 2023 11:01:26 -0600
changeset 208 88a7fee5effe
parent 2 2556522a2a45
permissions -rw-r--r--
Add jellyfin role.

---

- name: create mount point
  become: yes
  file:
    path:  "{{block_device_mount_point}}"
    mode:  "{{block_device_mode}}"
    state: "directory"

- name: mount block device
  become: yes
  mount:
    path:   "{{block_device_mount_point}}"
    src:    "{{block_device_uuid}}"
    fstype: "{{block_device_fstype}}"
    opts:   "{{block_device_opts}}"
    state:  "mounted"