cloud-hypervisor sockets: use spectrum names

- CONNECT.sock → vsock.sock
- ch.sock → vmm.sock
This commit is contained in:
Else, Someone 2025-10-09 04:22:43 +03:00
parent 6dcbe5b3d7
commit 665fd95d70
4 changed files with 8 additions and 8 deletions

View file

@ -54,8 +54,8 @@ in
];
systemd.services."microvm@".serviceConfig.ExecStartPost = [
(pkgs.writeShellScript "microvm-fix-umask" ''
if [[ -e CONNECT.sock ]] ; then
chmod g+rw CONNECT.sock
if [[ -e vsock.sock ]] ; then
chmod g+rw vsock.sock
fi
'')
];