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 61dd3938aa
commit 6d710952ee
4 changed files with 8 additions and 8 deletions

View file

@ -53,8 +53,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
'')
];