Skip to content

Commit

Permalink
Add fedora-39 as an option
Browse files Browse the repository at this point in the history
  • Loading branch information
matoval committed Jan 17, 2024
1 parent d16956f commit f70043f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/create_blueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
- Name of distribution, if left blank the distro is inferred from the build server
type: str
required: false
choices: ["", "rhel-8", "rhel-9", "centos-8", "centos-9", "fedora-36", "fedora-37", "fedora-38"]
choices: ["", "rhel-8", "rhel-9", "centos-8", "centos-9", "fedora-36", "fedora-37", "fedora-38", "fedora-39"]
default: ""
description:
description:
Expand Down Expand Up @@ -117,7 +117,7 @@
dest=dict(type="str", required=True),
name=dict(type="str", required=True),
description=dict(type="str", required=False, default=""),
distro=dict(type="str", required=False, default="", choices=["", "rhel-8", "rhel-9", "centos-8", "centos-9", "fedora-36", "fedora-37", "fedora-38"]),
distro=dict(type="str", required=False, default="", choices=["", "rhel-8", "rhel-9", "centos-8", "centos-9", "fedora-36", "fedora-37", "fedora-38", "fedora-39"]),
version_type=dict(type="str", required=False, default="patch", choices=["major", "minor", "patch"]),
packages=dict(type="list", required=False, elements="str", default=[]),
groups=dict(type="list", required=False, elements="str", default=[]),
Expand Down

0 comments on commit f70043f

Please sign in to comment.