moby--moby/volume/local
Kir Kolyshkin 39048cf656 Really switch to moby/sys/mount*
Switch to moby/sys/mount and mountinfo. Keep the pkg/mount for potential
outside users.

This commit was generated by the following bash script:

```
set -e -u -o pipefail

for file in $(git grep -l 'docker/docker/pkg/mount"' | grep -v ^pkg/mount); do
	sed -i -e 's#/docker/docker/pkg/mount"#/moby/sys/mount"#' \
		-e 's#mount\.\(GetMounts\|Mounted\|Info\|[A-Za-z]*Filter\)#mountinfo.\1#g' \
		$file
	goimports -w $file
done
```

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2020-03-20 09:46:25 -07:00
..
local.go Really switch to moby/sys/mount* 2020-03-20 09:46:25 -07:00
local_test.go Really switch to moby/sys/mount* 2020-03-20 09:46:25 -07:00
local_unix.go Really switch to moby/sys/mount* 2020-03-20 09:46:25 -07:00
local_windows.go Move `validateOpts()` to local_unix.go as it is not used on Windows 2018-12-23 00:53:23 +01:00