From 031038ef5e1144d009d55b78a4d1db122ea5ab64 Mon Sep 17 00:00:00 2001 From: "Federico A. Corazza" <20555025+facorazza@users.noreply.github.com> Date: Tue, 17 Oct 2023 17:32:22 +0200 Subject: [PATCH] Add support for Rocky (#3843) --- src/ansiblelint/schemas/meta.json | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/ansiblelint/schemas/meta.json b/src/ansiblelint/schemas/meta.json index 06920ae2de..e66626eb9c 100644 --- a/src/ansiblelint/schemas/meta.json +++ b/src/ansiblelint/schemas/meta.json @@ -917,6 +917,39 @@ "title": "PAN-OSPlatformModel", "type": "object" }, + "RockyLinuxPlatformModel": { + "properties": { + "name": { + "const": "Rocky", + "title": "Name", + "type": "string" + }, + "versions": { + "default": "all", + "items": { + "enum": [ + "8.0", + "8.1", + "8.2", + "8.3", + "8.4", + "8.5", + "8.6", + "8.7", + "8.8", + "9.0", + "9.1", + "9.2", + "all" + ], + "type": "string" + }, + "type": "array" + } + }, + "title": "RockyLinuxPlatformModel", + "type": "object" + }, "SLESPlatformModel": { "properties": { "name": { @@ -1384,6 +1417,9 @@ { "$ref": "#/$defs/PAN-OSPlatformModel" }, + { + "$ref": "#/$defs/RockyLinuxPlatformModel" + }, { "$ref": "#/$defs/SLESPlatformModel" },