Vendor in containers/common v0.12.0

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2020-05-28 16:58:53 -04:00
parent e8818ced80
commit 911b6d8b48
12 changed files with 159 additions and 95 deletions

View File

@ -0,0 +1,25 @@
// +build remote
package config
// isDirectory tests whether the given path exists and is a directory. It
// follows symlinks.
func isDirectory(path string) error {
return nil
}
func isRemote() bool {
return true
}
func (c *EngineConfig) validatePaths() error {
return nil
}
func (c *ContainersConfig) validateDevices() error {
return nil
}
func (c *ContainersConfig) validateUlimits() error {
return nil
}