mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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:
parent
1c5a4e0900
commit
283ee10886
1 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue