subiquity/autoinstall-system-setup-sc...

134 lines
3.3 KiB
JSON
Raw Normal View History

{
"type": "object",
"properties": {
"version": {
"type": "integer",
"minimum": 1,
"maximum": 1
},
"early-commands": {
"type": "array",
"items": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"reporting": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
],
"additionalProperties": true
}
},
"error-commands": {
"type": "array",
"items": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"locale": {
"type": "string"
},
"identity": {
"type": "object",
"properties": {
"realname": {
"type": "string"
},
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
"username",
"password"
],
"additionalProperties": false
},
"wslconfbase": {
"type": "object",
"properties": {
"automount_root": {
"type": "string"
},
"automount_options": {
"type": "string"
},
"network_generatehosts": {
"type": "boolean"
},
"network_generateresolvconf": {
"type": "boolean"
}
},
"additionalProperties": false
},
"wslconfadvanced": {
"type": "object",
"properties": {
"interop_enabled": {
"type": "boolean"
},
"interop_appendwindowspath": {
"type": "boolean"
},
"automount_enabled": {
"type": "boolean"
},
"automount_mountfstab": {
"type": "boolean"
},
"systemd_enabled": {
"type": "boolean"
}
},
"additionalProperties": false
},
"late-commands": {
"type": "array",
"items": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"shutdown": {
"type": "string",
"enum": [
"reboot",
"poweroff"
]
}
},
"required": [
"version"
],
"additionalProperties": true
}