src.nth.io/

summaryrefslogtreecommitdiff
path: root/roles/block-device/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/block-device/tasks')
-rw-r--r--roles/block-device/tasks/main.yaml17
1 files changed, 0 insertions, 17 deletions
diff --git a/roles/block-device/tasks/main.yaml b/roles/block-device/tasks/main.yaml
deleted file mode 100644
index 8d0b894..0000000
--- a/roles/block-device/tasks/main.yaml
+++ /dev/null
@@ -1,17 +0,0 @@
----
-
-- 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"