mirror of
https://github.com/containers/podman.git
synced 2025-10-31 01:50:50 +08:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.15.2 to 0.16.0. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.15.2...v0.16.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
34 lines
547 B
Go
34 lines
547 B
Go
// +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
|
|
}
|
|
|
|
func (c *ContainersConfig) validateTZ() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ContainersConfig) validateUmask() error {
|
|
return nil
|
|
}
|