From ee497cb7d6f6604dc13ad648ade0b3fe23c46bae Mon Sep 17 00:00:00 2001 From: Else Someone Date: Thu, 12 Feb 2026 22:22:06 +0200 Subject: [PATCH] ch-runner: drop passt from the PoC --- profiles/ch-runner.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/profiles/ch-runner.nix b/profiles/ch-runner.nix index f680354..44f8205 100644 --- a/profiles/ch-runner.nix +++ b/profiles/ch-runner.nix @@ -28,8 +28,6 @@ let uvmPrefix = "\${HOME}/uvms/${hostName}"; vmmSock = "${uvmPrefix}/vmm.sock"; - pastaSock = "${uvmPrefix}/pasta.sock"; - pastaPidPath = "${uvmPrefix}/pasta.pid"; elbPrefix = "${lib.getBin pkgs.execline}/bin"; s6Prefix = "${lib.getBin pkgs.s6}/bin"; writeElb = name: text: writeElb' name "-W" text; @@ -280,13 +278,6 @@ in exec -a "uuvm/${hostName} cloud-hypervisor" $CH --api-socket fd=3 } importas CH_PID ! - background { - s6-ipcserver-socketbinder -B ${pastaSock} - s6-ipcserverd - trap { default { foreground { s6-ipcclient -q ${uvmPrefix}/cleanup.sock true } exit } } - exec -a "uuvm/${hostName} passt" $PASST --vhost-user -fF 0 - } - importas PASST_PID ! background { getpid -E CLEANUP_PID s6-ipcserver-socketbinder -B "${uvmPrefix}/cleanup.sock" @@ -299,7 +290,6 @@ in } trap { default { foreground { s6-ipcclient -q ${uvmPrefix}/cleanup.sock true } exit } } if { $CHR create ${chSettingsFile} } - # if { $CHR add-net "vhost_user=on,socket=${pastaSock}" } if { ${lib.getExe uvmsPkgs.taps} pass $CHR add-net "id=wan,fd=3,mac=00:00:00:00:00:01" } if { $CHR boot } if { $CHR info }