Add Self func to reexec pkg to return the current binary path

Signed-off-by: Michael Crosby <michael@docker.com>
This commit is contained in:
Michael Crosby 2014-08-12 14:57:09 -07:00
parent 1c5a4e0900
commit 283ee10886
1 changed files with 15 additions and 0 deletions

View File

@ -3,6 +3,8 @@ package reexec
import (
"fmt"
"os"
"os/exec"
"path/filepath"
)
var registeredInitializers = make(map[string]func())
@ -28,3 +30,16 @@ func Init() bool {
return false
}
// Self returns the path to the current processes binary
func Self() string {
name := os.Args[0]
if filepath.Base(name) == name {
if lp, err := exec.LookPath(name); err == nil {
name = lp
}
}
return name
}