summaryrefslogtreecommitdiffstats
path: root/roles/mount/meta/argument_specs.yml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-07-19 00:23:36 +0200
committerAhmed Abdelhalim <[email protected]>2026-07-19 00:23:36 +0200
commit457ea6648783258458bb12280d39d5816450ff62 (patch)
treed1f7375ede93c47710fab15d2fb973e0f5bfdf86 /roles/mount/meta/argument_specs.yml
parent11e661babdb681924d902cbf193ed248dd88c039 (diff)
Rename backup -> mount as a role
Diffstat (limited to 'roles/mount/meta/argument_specs.yml')
-rw-r--r--roles/mount/meta/argument_specs.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/mount/meta/argument_specs.yml b/roles/mount/meta/argument_specs.yml
new file mode 100644
index 00000000..e74c1610
--- /dev/null
+++ b/roles/mount/meta/argument_specs.yml
@@ -0,0 +1,20 @@
+---
+argument_specs:
+ main:
+ options:
+ mount_device:
+ type: "str"
+ description: "Device to mount (e.g. PARTLABEL=backup)"
+ required: true
+ mount_point:
+ type: "str"
+ description: "Mount point for the drive"
+ default: "/mnt/backup"
+ mount_fstype:
+ type: "str"
+ description: "Filesystem type of the device"
+ default: "ext4"
+ mount_options:
+ type: "str"
+ description: "Mount options for the device"
+ default: "defaults,noatime"