block-device/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Thu, 29 May 2025 21:34:48 -0500
changeset 243 f3f30ba5580e
parent 2 2556522a2a45
permissions -rw-r--r--
More cert fixes.

---

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