dockerversion placeholder for library import
- Add a *version* file placeholder. - Update autogen and builds to use it and an autogen build flag Signed-off-by: Vincent Demeester <vincent@sbr.pm>master
							parent
							
								
									0d91f2899e
								
							
						
					
					
						commit
						9516a01c56
					
				| 
						 | 
					@ -20,7 +20,7 @@ import (
 | 
				
			||||||
	"github.com/docker/distribution/registry/api/v2"
 | 
						"github.com/docker/distribution/registry/api/v2"
 | 
				
			||||||
	"github.com/docker/distribution/registry/client"
 | 
						"github.com/docker/distribution/registry/client"
 | 
				
			||||||
	"github.com/docker/distribution/registry/client/transport"
 | 
						"github.com/docker/distribution/registry/client/transport"
 | 
				
			||||||
	"github.com/docker/docker/autogen/dockerversion"
 | 
						"github.com/docker/docker/dockerversion"
 | 
				
			||||||
	"github.com/docker/docker/pkg/parsers/kernel"
 | 
						"github.com/docker/docker/pkg/parsers/kernel"
 | 
				
			||||||
	"github.com/docker/docker/pkg/tlsconfig"
 | 
						"github.com/docker/docker/pkg/tlsconfig"
 | 
				
			||||||
	"github.com/docker/docker/pkg/useragent"
 | 
						"github.com/docker/docker/pkg/useragent"
 | 
				
			||||||
| 
						 | 
					@ -39,9 +39,9 @@ var dockerUserAgent string
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	httpVersion := make([]useragent.VersionInfo, 0, 6)
 | 
						httpVersion := make([]useragent.VersionInfo, 0, 6)
 | 
				
			||||||
	httpVersion = append(httpVersion, useragent.VersionInfo{Name: "docker", Version: dockerversion.VERSION})
 | 
						httpVersion = append(httpVersion, useragent.VersionInfo{Name: "docker", Version: dockerversion.Version})
 | 
				
			||||||
	httpVersion = append(httpVersion, useragent.VersionInfo{Name: "go", Version: runtime.Version()})
 | 
						httpVersion = append(httpVersion, useragent.VersionInfo{Name: "go", Version: runtime.Version()})
 | 
				
			||||||
	httpVersion = append(httpVersion, useragent.VersionInfo{Name: "git-commit", Version: dockerversion.GITCOMMIT})
 | 
						httpVersion = append(httpVersion, useragent.VersionInfo{Name: "git-commit", Version: dockerversion.GitCommit})
 | 
				
			||||||
	if kernelVersion, err := kernel.GetKernelVersion(); err == nil {
 | 
						if kernelVersion, err := kernel.GetKernelVersion(); err == nil {
 | 
				
			||||||
		httpVersion = append(httpVersion, useragent.VersionInfo{Name: "kernel", Version: kernelVersion.String()})
 | 
							httpVersion = append(httpVersion, useragent.VersionInfo{Name: "kernel", Version: kernelVersion.String()})
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue