author | Luke Hoersten <luke@hoersten.org> |
Sun, 09 Feb 2020 12:05:37 -0600 | |
changeset 2 | 2556522a2a45 |
parent 0 | roles/block-device/tasks/main.yaml@df042396074e |
permissions | -rw-r--r-- |
--- - 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"