Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Drop EoL Debian 10 support #393

Merged
merged 1 commit into from
Aug 9, 2024
Merged
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
1 change: 0 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system RedHat 7

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system CentOS 7

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system CentOS 8

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system Fedora 30

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system Fedora 31

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system Fedora 32

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system Fedora 33
"name": "puppet-selinux",
"version": "4.1.1-rc0",
"author": "Vox Pupuli",
Expand Down Expand Up @@ -57,7 +57,6 @@
{
"operatingsystem": "Debian",
"operatingsystemrelease": [
"10",
"11",
"12"
]
Expand Down
18 changes: 0 additions & 18 deletions spec/classes/selinux_package_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,24 +69,6 @@
it { is_expected.to contain_package('policycoreutils').with(ensure: 'installed') }
end

context 'On Debian 10' do
let(:facts) do
{
osfamily: 'Debian',
operatingsystem: 'Debian',
operatingsystemmajrelease: '10',
selinux_current_mode: 'enforcing',
os: { release: { major: '10' }, name: 'Debian', family: 'Debian' }
}
end

it { is_expected.to compile.with_all_deps }

%w[policycoreutils-python-utils selinux-basics selinux-policy-default auditd].each do |package|
it { is_expected.to contain_package(package).with(ensure: 'installed') }
end
end

context 'do not manage package' do
let(:facts) do
{
Expand Down