We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59263a commit 64d183bCopy full SHA for 64d183b
1 file changed
enclave-setup.sh
@@ -117,8 +117,10 @@ else
117
fi
118
119
120
+# Load vsock core first — nitro_enclaves registers its vsock transport against it.
121
+# Without vsock loaded before the enclave starts, AF_VSOCK connect() returns ENODEV.
122
+modprobe vsock 2>/dev/null || true
123
modprobe nitro_enclaves 2>/dev/null || true
-modprobe vhost_vsock 2>/dev/null || true
124
125
# Create the enclave sockets directory early — describe-enclaves needs it.
126
# 755 so non-root users (ubuntu) can list enclaves without sudo.
0 commit comments