diff options
Diffstat (limited to 'runsc')
-rw-r--r-- | runsc/BUILD | 1 | ||||
-rw-r--r-- | runsc/main.go | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/runsc/BUILD b/runsc/BUILD index 3651c2d30..8f8e2ee35 100644 --- a/runsc/BUILD +++ b/runsc/BUILD @@ -8,6 +8,7 @@ go_binary( "main.go", ], pure = "on", + x_defs = {"main.gitRevision": "{GIT_REVISION}"}, deps = [ "//pkg/log", "//runsc/boot", diff --git a/runsc/main.go b/runsc/main.go index 883b8b1f4..3311514d2 100644 --- a/runsc/main.go +++ b/runsc/main.go @@ -61,6 +61,8 @@ var ( overlay = flag.Bool("overlay", false, "wrap filesystem mounts with writable overlay. All modifications are stored in memory inside the sandbox.") ) +var gitRevision = "" + func main() { // Help and flags commands are generated automatically. subcommands.Register(subcommands.HelpCommand(), "") @@ -166,6 +168,7 @@ func main() { log.Infof("***************************") log.Infof("Args: %s", os.Args) + log.Infof("Git Revision: %s", gitRevision) log.Infof("PID: %d", os.Getpid()) log.Infof("UID: %d, GID: %d", os.Getuid(), os.Getgid()) log.Infof("Configuration:") |