Files
clan-core/clanModules/single-disk/README.md
hsjobeki 341f444fa0 revert bd3861c580
revert Merge pull request 'Remove clanModules/*' (#4202) from remove-modules into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4202

See: https://git.clan.lol/clan/clan-core/issues/4365

Not all modules are migrated.
If they are not migrated, we need to write migration docs and please display the link to the migration docs
2025-07-15 17:51:36 +00:00

998 B

description = "Configures partitioning of the main disk" categories = ["System"] features = [ "inventory" ]

Primary Disk Layout

A module for the "disk-layout" category MUST be chosen.

There is exactly one slot for this type of module in the UI, if you don't fill the slot, your machine cannot boot

This module is a good choice for most machines. In the future clan will offer a broader choice of disk-layouts

The UI will ask for the options of this module:

device: "/dev/null"

Usage example

inventory.json

"services": {
    "single-disk": {
        "default": {
            "meta": {
                "name": "single-disk"
            },
            "roles": {
                "default": {
                    "machines": ["jon"]
                }
            },
            "machines": {
                "jon": {
                    "config": {
                        "device": "/dev/null"
                    }
                }
            }
        }
    }
}