mirror of
https://github.com/containers/podman.git
synced 2025-11-01 10:45:52 +08:00
Update the login tests to reflect the latest changes to allow http{s}
prefixes (again) to address bugzilla.redhat.com/show_bug.cgi?id=2062072.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
35 lines
565 B
Go
35 lines
565 B
Go
//go:build remote
|
|
// +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
|
|
}
|