mirror of
https://github.com/rancher/os.git
synced 2025-06-28 07:46:49 +00:00
Usage: rancherctl env <command> Executes <command> with environment from rancher.environment. Real env vars override those from rancher.environment.
40 lines
698 B
Go
40 lines
698 B
Go
package control
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"syscall"
|
|
|
|
"github.com/codegangsta/cli"
|
|
"github.com/rancherio/os/config"
|
|
"github.com/rancherio/os/util"
|
|
)
|
|
|
|
func envAction(c *cli.Context) {
|
|
cfg, err := config.LoadConfig()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
args := c.Args()
|
|
osEnv := os.Environ()
|
|
|
|
envMap := make(map[string]string, len(cfg.Environment) + len(osEnv))
|
|
for k, v := range cfg.Environment {
|
|
envMap[k] = v
|
|
}
|
|
for k, v := range util.KVPairs2Map(osEnv) {
|
|
envMap[k] = v
|
|
}
|
|
|
|
if cmd, err := exec.LookPath(args[0]); err != nil {
|
|
log.Fatal(err)
|
|
} else {
|
|
args[0] = cmd
|
|
}
|
|
if err := syscall.Exec(args[0], args, util.Map2KVPairs(envMap)); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|