block-device/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Mon, 27 Jul 2020 19:44:18 -0500
changeset 125 5a298f7b44f5
parent 2 2556522a2a45
permissions -rw-r--r--
Added dynmap to minecraft.

---

- 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"