2020-06-16 16:06:56 +02:00
|
|
|
---
|
|
|
|
$schema: https://json-schema.org/schema#
|
|
|
|
$id: https://calamares.io/schemas/users
|
|
|
|
additionalProperties: false
|
|
|
|
type: object
|
|
|
|
properties:
|
2020-06-18 16:12:12 +02:00
|
|
|
defaultGroups:
|
|
|
|
type: array
|
|
|
|
items: { type: string }
|
|
|
|
autologinGroup: { type: string }
|
|
|
|
doAutologin: { type: boolean, default: true }
|
|
|
|
sudoersGroup: { type: string }
|
|
|
|
setRootPassword: { type: boolean, default: true }
|
|
|
|
doReusePassword: { type: boolean, default: true }
|
|
|
|
required:
|
|
|
|
- defaultGroups
|
|
|
|
- autologinGroup
|
|
|
|
- sudoersGroup
|