From 235eb0bb839d5ae13b2c1cf7fcc2aea042eb71cf Mon Sep 17 00:00:00 2001 From: Nick <50747025+mcdonnnj@users.noreply.github.com> Date: Tue, 16 May 2023 03:20:54 -0400 Subject: [PATCH] Add Kali Linux as a supported platform (#3448) --- src/ansiblelint/schemas/meta.json | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/ansiblelint/schemas/meta.json b/src/ansiblelint/schemas/meta.json index f40376e303..eb69fe7bc3 100644 --- a/src/ansiblelint/schemas/meta.json +++ b/src/ansiblelint/schemas/meta.json @@ -662,6 +662,36 @@ "title": "JunosPlatformModel", "type": "object" }, + "KaliPlatformModel": { + "properties": { + "name": { + "const": "Kali", + "title": "Name", + "type": "string" + }, + "versions": { + "default": "all", + "items": { + "enum": [ + "2.0", + "2016", + "2017", + "2018", + "2019", + "2020", + "2021", + "2022", + "2023", + "all" + ], + "type": "string" + }, + "type": "array" + } + }, + "title": "KaliPlatformModel", + "type": "object" + }, "MacOSXPlatformModel": { "properties": { "name": { @@ -1265,6 +1295,9 @@ { "$ref": "#/$defs/JunosPlatformModel" }, + { + "$ref": "#/$defs/KaliPlatformModel" + }, { "$ref": "#/$defs/macOSPlatformModel" },