diff options
author | Chanwit Kaewkasi <chanwit@gmail.com> | 2018-05-10 16:56:49 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-05-10 16:57:41 -0700 |
commit | 7b6111b695840ab2938abe0d207514dd34081327 (patch) | |
tree | 90961933623d12675a0a17136e19089d1a4fb892 /runsc/main.go | |
parent | ac01f245ff4515af2b69225e8b7fb2cf28808275 (diff) |
Display the current git revision in the info block
Change-Id: I9737cc680968033ba82c95bb04cc482fcaa12642
PiperOrigin-RevId: 196192683
Diffstat (limited to 'runsc/main.go')
-rw-r--r-- | runsc/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
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:") |