Files
podman/vendor/go.podman.io/common/pkg/config/config_remote.go
Paul Holzinger dbfddb82cb vendor: update go.podman.io/{common,image,storage}
Update to the latest tags to make sure they all work correctly.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-09-03 17:46:02 +02:00

46 lines
759 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 *EngineConfig) validateRuntimeNames() 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
}