packer-builds

Packer Builds for LXC and Libvirt
git clone https://git.in0rdr.ch/packer-builds.git
Log | Files | Refs | Pull requests |Archive | README

commit d087718da60c92471ada10f9648336810eed3655
parent 8b02109699a015ee46a74a4510eb95bda3e50f4b
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 29 Nov 2025 11:18:23 +0100

feat(haproxy): use amd64 debian trixie

Diffstat:
Mconfig/lxc-config | 4++++
Mhaproxy-lxc.json.pkr.hcl | 3+--
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/config/lxc-config b/config/lxc-config @@ -23,6 +23,10 @@ lxc.group = onboot # Run with specific apparmor profile #lxc.apparmor.profile = lxc-gatus +# +# For Haproxy chroot +#lxc.apparmor.profile = generated +#lxc.apparmor.allow_nesting = 1 # Host specific via deploy-output.sh #lxc.uts.name = hostname diff --git a/haproxy-lxc.json.pkr.hcl b/haproxy-lxc.json.pkr.hcl @@ -7,7 +7,7 @@ variable "manifest" { source "lxc" "haproxy" { config_file = "config/lxc-config" template_name = "download" - template_parameters = ["--dist", "Debian_by_maurer", "--release", "Bookworm", "--arch", "armv7l"] + template_parameters = ["--dist", "debian", "--release", "trixie", "--arch", "amd64"] } build { @@ -20,5 +20,4 @@ build { provisioner "shell" { script = "scripts/haproxy.sh" } - }