We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d590929 commit f01ce95Copy full SHA for f01ce95
1 file changed
Sources/Containerization/LinuxContainer.swift
@@ -1021,7 +1021,8 @@ extension LinuxContainer {
1021
guard let vminitd = agent as? Vminitd else {
1022
throw ContainerizationError(.unsupported, message: "filesystemOperation requires Vminitd agent")
1023
}
1024
- try await vminitd.filesystemOperation(operation: operation, path: path)
+ let guestPath = URL(filePath: Self.guestRootfsPath(self.id)).appending(path: path).path
1025
+ try await vminitd.filesystemOperation(operation: operation, path: guestPath)
1026
1027
1028
0 commit comments