| 339 | |
| 340 | |
| 341 | bool isStandaloneContainer( |
| 342 | const string& runtimeDir, |
| 343 | const ContainerID& containerId) |
| 344 | { |
| 345 | const string path = getStandaloneContainerMarkerPath(runtimeDir, containerId); |
| 346 | |
| 347 | return os::exists(path); |
| 348 | } |
| 349 | |
| 350 | |
| 351 | Result<ContainerConfig> getContainerConfig( |
no test coverage detected