From 4ca24cffc68a3ac88bee8cd070c8df1d98618983 Mon Sep 17 00:00:00 2001 From: Josh Curl Date: Fri, 11 Nov 2016 14:56:25 -0800 Subject: [PATCH] Add bootcmd to schema --- config/schema.go | 3 ++- scripts/schema.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config/schema.go b/config/schema.go index 312da7bd..8e7d9e6b 100644 --- a/config/schema.go +++ b/config/schema.go @@ -13,7 +13,8 @@ var schema = `{ "hostname": {"type": "string"}, "mounts": {"type": "array"}, "rancher": {"$ref": "#/definitions/rancher_config"}, - "runcmd": {"type": "array"} + "runcmd": {"type": "array"}, + "bootcmd": {"type": "array"} }, "definitions": { diff --git a/scripts/schema.json b/scripts/schema.json index 6e04a089..022505cc 100644 --- a/scripts/schema.json +++ b/scripts/schema.json @@ -11,7 +11,8 @@ "hostname": {"type": "string"}, "mounts": {"type": "array"}, "rancher": {"$ref": "#/definitions/rancher_config"}, - "runcmd": {"type": "array"} + "runcmd": {"type": "array"}, + "bootcmd": {"type": "array"} }, "definitions": {