block-device/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Wed, 13 May 2020 10:10:07 -0500
changeset 22 adeda2afeb75
parent 2 2556522a2a45
permissions -rw-r--r--
Fixed gpu collector on rpi.

---

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