Skip to content

Commit

Permalink
Use correct Debian Bookworm version (#1281)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynethallwright committed Jul 16, 2024
1 parent 48e9ccf commit 4870de9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- Fix `version_string` for Debian Bookworm

## 11.4.0 - *2024-07-15*

- `docker_installation_package` support for Ubuntu v24.04 (noble)
Expand Down
2 changes: 1 addition & 1 deletion resources/installation_package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def bullseye?
end

def bookworm?
return true if platform?('debian') && node['platform_version'].to_i == 11
return true if platform?('debian') && node['platform_version'].to_i == 12
false
end

Expand Down

0 comments on commit 4870de9

Please sign in to comment.