Remind users when a VM is still running after hanger vm ssh exits instead of silently dropping them back to the host shell.\n\nAttach a Firecracker vsock device to each VM, persist the host vsock path/CID,\nadd a new guest-side banger-vsock-pingd responder to the runtime bundle and both\nimage-build paths, and expose a vm.ping RPC that the CLI and TUI call after SSH\nreturns. Doctor and start/build preflight now validate the helper plus\n/dev/vhost-vsock so the feature fails early and clearly.\n\nValidated with go mod tidy, bash -n customize.sh, git diff --check, make build,\nand GOCACHE=/tmp/banger-gocache go test ./... outside the sandbox because the\ndaemon tests need real Unix/UDP sockets. Rebuild the image/rootfs used for new\nVMs so the guest ping service is present.
32 lines
1,019 B
TOML
32 lines
1,019 B
TOML
# Template manifest for local or published runtime bundle archives.
|
|
# Keep this checked-in file empty by default; use a local manifest copy with
|
|
# concrete `url` and `sha256` values when bootstrapping `./runtime/`.
|
|
version = "v0"
|
|
url = ""
|
|
sha256 = ""
|
|
bundle_root = "runtime"
|
|
required_paths = [
|
|
"firecracker",
|
|
"customize.sh",
|
|
"packages.sh",
|
|
"namegen",
|
|
"banger-vsock-pingd",
|
|
"packages.apt",
|
|
"id_ed25519",
|
|
"rootfs-docker.ext4",
|
|
"wtf/root/boot/vmlinux-6.8.0-94-generic",
|
|
"wtf/root/boot/initrd.img-6.8.0-94-generic",
|
|
"wtf/root/lib/modules/6.8.0-94-generic",
|
|
]
|
|
|
|
[bundle_metadata]
|
|
firecracker_bin = "firecracker"
|
|
ssh_key_path = "id_ed25519"
|
|
namegen_path = "namegen"
|
|
customize_script = "customize.sh"
|
|
vsock_ping_helper_path = "banger-vsock-pingd"
|
|
default_packages_file = "packages.apt"
|
|
default_rootfs = "rootfs-docker.ext4"
|
|
default_kernel = "wtf/root/boot/vmlinux-6.8.0-94-generic"
|
|
default_initrd = "wtf/root/boot/initrd.img-6.8.0-94-generic"
|
|
default_modules_dir = "wtf/root/lib/modules/6.8.0-94-generic"
|