mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4300e5e881
This extract what was in registry_test.go and registry_mock_test.go. This also move `RegistryHosting` requirement to `registry.Hosting` Signed-off-by: Vincent Demeester <vincent@sbr.pm>
12 lines
344 B
Go
12 lines
344 B
Go
package registry
|
|
|
|
import "os/exec"
|
|
|
|
// Hosting returns wether the host can host a registry (v2) or not
|
|
func Hosting() bool {
|
|
// for now registry binary is built only if we're running inside
|
|
// container through `make test`. Figure that out by testing if
|
|
// registry binary is in PATH.
|
|
_, err := exec.LookPath(v2binary)
|
|
return err == nil
|
|
}
|