mirror of
https://github.com/containers/podman.git
synced 2025-12-03 11:49:18 +08:00
- Update github.com/containers/common to v0.64.1-0.20250806164630-57def9601f3b - Update github.com/spf13/pflag to v1.0.7 - Update github.com/seccomp/libseccomp-golang to v0.11.1 Signed-off-by: Joshua Arrevillaga <2004jarrevillaga@gmail.com>
42 lines
690 B
Go
42 lines
690 B
Go
//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) validateInterfaceName() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ContainersConfig) validateUlimits() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ContainersConfig) validateTZ() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ContainersConfig) validateUmask() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ContainersConfig) validateLogPath() error {
|
|
return nil
|
|
}
|