Make iterating on a Firecracker-friendly Void guest practical without replacing the Debian default image path. Add local Void rootfs build/register/verify plumbing, a language-agnostic dev package baseline, and guest SSH/work-disk hardening so new images use the runtime bundle key, keep a normal root bash environment, and repair stale nested /root layouts on restart. Replace the guest PING/PONG responder with an HTTP /healthz agent over vsock, rename the runtime bundle and config surface from ping helper to agent while still accepting the legacy keys, and route the post-SSH reminder through the new vm.health path. Validated with GOCACHE=/tmp/banger-gocache go test ./..., make build, bash -n customize.sh make-rootfs-void.sh, and git diff --check.
10 lines
505 B
TOML
10 lines
505 B
TOML
# Experimental Void Linux guest profile for local testing.
|
|
#
|
|
# Copy the values you want into ~/.config/banger/config.toml and replace
|
|
# /abs/path/to/banger with your checkout path. Do not set default_base_rootfs
|
|
# to the Void image yet; banger image build still assumes the Debian flow.
|
|
|
|
runtime_dir = "/abs/path/to/banger/runtime"
|
|
default_image_name = "void-exp"
|
|
default_rootfs = "/abs/path/to/banger/runtime/rootfs-void.ext4"
|
|
default_work_seed = "/abs/path/to/banger/runtime/rootfs-void.work-seed.ext4"
|