Skip to content

Commit

Permalink
Add support for Rocky (#3843)
Browse files Browse the repository at this point in the history
  • Loading branch information
facorazza committed Oct 17, 2023
1 parent 07181fe commit 031038e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/ansiblelint/schemas/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -1384,6 +1417,9 @@
{
"$ref": "#/$defs/PAN-OSPlatformModel"
},
{
"$ref": "#/$defs/RockyLinuxPlatformModel"
},
{
"$ref": "#/$defs/SLESPlatformModel"
},
Expand Down

0 comments on commit 031038e

Please sign in to comment.