mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4357ed4a73
dockerinit has been around for a very long time. It was originally used as a way for us to do configuration for LXC containers once the container had started. LXC is no longer supported, and /.dockerinit has been dead code for quite a while. This removes all code and references in code to dockerinit. Signed-off-by: Aleksa Sarai <asarai@suse.com>
13 lines
375 B
Go
13 lines
375 B
Go
// +build !autogen
|
|
|
|
// Package dockerversion is auto-generated at build-time
|
|
package dockerversion
|
|
|
|
// Default build-time variable for library-import.
|
|
// This file is overridden on build with build-time informations.
|
|
const (
|
|
GitCommit string = "library-import"
|
|
Version string = "library-import"
|
|
BuildTime string = "library-import"
|
|
IAmStatic string = "library-import"
|
|
)
|