Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/schema.json
diff options
context:
space:
mode:
authorDaniel <blackrabbit256@gmail.com>2022-03-01 01:57:57 +1100
committerGitHub <noreply@github.com>2022-02-28 15:57:57 +0100
commit537b9cab037aecfd18edef156dd3ea55072918e9 (patch)
treefe56cd4af527e816d831b220c6672c1dcfc2958f /schema.json
parentfa87d85708331ad45f28906217f94937bae474fe (diff)
Rework network config (#1001)
* Update network configuration * Rework network configuration * Update documentation * Fix flake8 * Update Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com> Co-authored-by: Anton Hvornum <anton.feeds@gmail.com>
Diffstat (limited to 'schema.json')
-rw-r--r--schema.json24
1 files changed, 12 insertions, 12 deletions
diff --git a/schema.json b/schema.json
index aacf3f07..e4b19b64 100644
--- a/schema.json
+++ b/schema.json
@@ -84,18 +84,18 @@
"description": "Choose between NetworkManager, manual configuration, use systemd-networkd from the ISO or no configuration",
"type": "object",
"properties": {
- "NetworkManager": {
- "description": "<boolean>",
- "type": "boolean"
- },
- "interface-name": {
- "address": "ip address",
- "subnet": "255.255.255.0",
- "gateway": "ip address",
- "dns": "ip address"
- },
- "nic": "Copy ISO network configuration to installation",
- "nic": {}
+ "type": "string",
+ "iface": "string",
+ "dhcp": "boolean",
+ "ip": "string",
+ "gateway": "string",
+ "dns": {
+ "description": "List of DNS servers",
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
}
},
"ntp": {