summaryrefslogtreecommitdiffhomepage
path: root/runsc/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/main.go')
-rw-r--r--runsc/main.go3
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:")