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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Distribution support is shown in the table below.
| Buster | Not supported |
| Bullseye | Supported |
| Bookworm | Supported |
| Trixie | Planned |
| Trixie | Supported |
2 changes: 1 addition & 1 deletion arm64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Default variable values
# BOX_VERSION has no default and must be set explicitly
OS_CODENAME ?= bookworm
OS_CODENAME ?= trixie
BOX_CHANNEL ?= stable

# Alias targets
Expand Down
4 changes: 3 additions & 1 deletion arm64/template.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ variable "os_releases" {
# "buster" = "10.13.0",
"bullseye" = "11.11.0",
"bookworm" = "12.6.0",
"trixie" = "13.1.0",
}
}
variable "os_hashes" {
Expand All @@ -32,6 +33,7 @@ variable "os_hashes" {
# "buster" = "a20a5437e243186ac8d678202cf55a253e8d37df2b187da885796d5071ba829f",
"bullseye" = "c81b6081d5dc5cfac49310b104eb9843252fd3c97cedbcd69ec0388798e7ef7e",
"bookworm" = "38dc21a00ca96dab9754c9c6e8eea55549befc99dbe88d4e3c8af4bd622ab22f",
"trixie" = "9ecd75a62d90ecedfc3f7fcdf46c349bb4ebfb79553514c9d96239cd9bada820",
}
}

Expand Down Expand Up @@ -98,7 +100,7 @@ build {
"../scripts/vagrant.sh",
"../scripts/cleanup.sh",
"../scripts/base_version.sh",
"../scripts/zerodisk.sh"
# "../scripts/zerodisk.sh" # this is different on Trixie, /tmp is now tmpfs by default
]
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dpkg --list \
# Removing DHCP, cache, ...
echo "==> Cleaning up /var ..."
# DHCP leases
rm /var/lib/dhcp/*
# rm /var/lib/dhcp/* # Not on Trixie?
# empty cache
find /var/cache -type f -exec rm -rf {} \;

Expand Down