summaryrefslogtreecommitdiffstats
path: root/roles/mount/meta/argument_specs.yml
blob: e74c1610462ffd3976300ee93cdfd94f5169a0bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"