Skip to content

Commit

Permalink
Merge pull request #832 from h0tw1r3/bookworm
Browse files Browse the repository at this point in the history
(maint) Add Debian 12 bookworm platform definitions
  • Loading branch information
h0tw1r3 authored Nov 29, 2023
2 parents 74db94a + 246e4a3 commit bf64418
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This changelog adheres to [Keep a CHANGELOG](https://keepachangelog.com).

### Added
- (VANAGON-236) Add macOS 14 (Intel) platform definition to vanagon
- (maint) Add Debian 12 bookworm platform definitions

## [0.43.0] - 2023-11-20
### Added
Expand Down
11 changes: 11 additions & 0 deletions lib/vanagon/platform/defaults/debian-12-aarch64.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
platform "debian-12-aarch64" do |plat|
plat.servicedir "/lib/systemd/system"
plat.defaultdir "/etc/default"
plat.servicetype "systemd"
plat.codename "bookworm"

packages = %w(build-essential devscripts make quilt pkg-config debhelper rsync fakeroot cmake)
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}"
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends "
plat.vmpooler_template "debian-12-arm64"
end
11 changes: 11 additions & 0 deletions lib/vanagon/platform/defaults/debian-12-amd64.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
platform "debian-12-amd64" do |plat|
plat.servicedir "/lib/systemd/system"
plat.defaultdir "/etc/default"
plat.servicetype "systemd"
plat.codename "bookworm"

packages = %w(build-essential devscripts make quilt pkg-config debhelper rsync fakeroot cmake)
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}"
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends "
plat.vmpooler_template "debian-12-x86_64"
end

0 comments on commit bf64418

Please sign in to comment.