MountStep - ODEX-TOS/tos-installer-backend GitHub Wiki

A mount is an execution step. This execution step takes as an argument the device of a drive or name of a partition specified in the models section. It will then mount the entire drive or a single partition. Lets take a look at the yaml

models:
 - disks:
   -disk:
    device: "/dev/sda"
    partitions:
      - partition:
        name: "root"
#specify your models here
execution:
 - mount: "/dev/sda" # Mount all partitions on the drive /dev/sda (mounts the root partition first then the rest)
 - mount: "root" # Mount the partition called root