Skip to content

Commit

Permalink
Add Debian 11 EoL Date: 2024-08-14
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Sep 20, 2024
1 parent 04cc79c commit bb89da3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/puppet_metadata/operatingsystem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class OperatingSystem
'Debian' => {
# TODO: EOL is standard support, not the extended life cycle
'12' => nil, # '~2026',
'11' => nil, # '~2024',
'11' => '2024-08-14',
'10' => '2022-09-10',
'9' => '2020-07-06',
'8' => '2018-06-17',
Expand Down
4 changes: 2 additions & 2 deletions spec/operatingsystem_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
context 'with Debian' do
let(:os) { 'Debian' }

it 'returns 11, 12' do
expect(described_class.supported_releases(os)).to match_array(%w[11 12])
it 'returns 12' do
expect(described_class.supported_releases(os)).to contain_exactly('12')
end

it 'the last entry matches latest_release' do
Expand Down

0 comments on commit bb89da3

Please sign in to comment.