calamares/src/modules/users/users.schema.yaml
Adriaan de Groot 4a07bd4ae3 CI: import all the rest of the YAML schema
- These have **not** been fixed for validation, so the schema's themselves
  will fail to load. This is a consequence of variations in JSON-Schema
  representations through various drafts. Fixing the schemata is
  fairly straightforward.

This gives us 19 new tests, all of which fail.
2020-06-16 16:06:56 +02:00

19 lines
591 B
YAML

---
$schema: https://json-schema.org/schema#
$id: https://calamares.io/schemas/users
additionalProperties: false
type: object
properties:
"defaultGroups":
required: true
type: seq
sequence:
- { type: str }
"autologinGroup": { type: string, required: true }
"doAutologin": { type: boolean, default: true }
"sudoersGroup": { type: string, required: true }
"setRootPassword": { type: boolean, default: true }
"availableShells": { type: str }
"avatarFilePath": { type: str }
"doReusePassword": { type: boolean, default: true }