Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sync.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
spec/spec_helper_acceptance.rb:
unmanaged: false
unmanaged: true
.puppet-lint.rc:
enabled_lint_checks:
- parameter_types
1 change: 1 addition & 0 deletions data/os/RedHat/10.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python::default_system_version: "3.12"
17 changes: 11 additions & 6 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "puppet-python",
"version": "8.0.1-rc0",
Expand All @@ -24,13 +24,15 @@
"operatingsystem": "AlmaLinux",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
"operatingsystem": "CentOS",
"operatingsystemrelease": [
"9"
"9",
"10"
]
},
{
Expand Down Expand Up @@ -62,21 +64,24 @@
"operatingsystem": "OracleLinux",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
"operatingsystem": "RedHat",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
"operatingsystem": "Rocky",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
Expand All @@ -102,7 +107,7 @@
},
{
"name": "puppet/epel",
"version_requirement": ">= 3.0.0 < 6.0.0"
"version_requirement": ">= 6.0.0 < 7.0.0"
}
]
}
7 changes: 3 additions & 4 deletions spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# frozen_string_literal: true

# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

require 'voxpupuli/acceptance/spec_helper_acceptance'

configure_beaker(modules: :metadata)
configure_beaker(modules: :metadata) do |host|
host.install_package('gnupg2') if fact('os.family') == 'RedHat' && fact('os.release.major').to_i >= 10
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really wish we didn't have to do this here.

@bastelfreak didn't we want to fix that in hostgenerator?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reality is, this line in puppet-epel should not use gpg on el10

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know how to properly fix the epel module (or why it even exists instead of installing the epel-release package), but we could fix this in beaker-hostgenerator if we want:

end

Dir['./spec/support/acceptance/**/*.rb'].sort.each { |f| require f }
Loading