mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
17 lines
424 B
YAML
17 lines
424 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Root password plugin manifest
|
|
type: object
|
|
properties:
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
root_password:
|
|
type: object
|
|
oneOf:
|
|
- required: [password]
|
|
- required: [password-crypted]
|
|
properties:
|
|
password: {type: string}
|
|
password-crypted: {type: string}
|
|
additionalProperties: false
|