| 63 | } |
| 64 | |
| 65 | type podmanFactory struct { |
| 66 | // Information about the mounted cgroup subsystems. |
| 67 | machineInfoFactory info.MachineInfoFactory |
| 68 | |
| 69 | storageDriver docker.StorageDriver |
| 70 | storageDir string |
| 71 | |
| 72 | cgroupSubsystem map[string]string |
| 73 | |
| 74 | fsInfo fs.FsInfo |
| 75 | |
| 76 | metrics container.MetricSet |
| 77 | |
| 78 | thinPoolName string |
| 79 | thinPoolWatcher *devicemapper.ThinPoolWatcher |
| 80 | |
| 81 | zfsWatcher *zfs.ZfsWatcher |
| 82 | } |
| 83 | |
| 84 | func (f *podmanFactory) CanHandleAndAccept(name string) (handle bool, accept bool, err error) { |
| 85 | // Rootless |
nothing calls this directly
no outgoing calls
no test coverage detected