Migrate the genlab.mkfs role

This commit is contained in:
Alexander Gorelyshev
2025-12-08 12:20:01 +04:00
parent aac58f44d0
commit 8cc746fbfa
9 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
---
- name: "Create a filesystem on the given device"
community.general.filesystem:
fstype: "{{ mkfs_type }}"
dev: "{{ mkfs_device }}"
state: "{{ mkfs_state }}"
opts: "{{ mkfs_opts }}"
force: "{{ mkfs_force }}"