Alter subprocess's environment instead of the hosts

Fixes #415
This commit is contained in:
Michael Schurter 2017-08-16 14:54:50 -07:00
parent 3aa2ffab12
commit 565f5c8c5e
1 changed files with 13 additions and 4 deletions

View File

@ -9,15 +9,24 @@ import (
)
func DoSysctrl(mib string) ([]string, error) {
err := os.Setenv("LC_ALL", "C")
if err != nil {
return []string{}, err
hostEnv := os.Environ()
foundLC := false
for i, line := range hostEnv {
if strings.HasPrefix(line, "LC_ALL") {
hostEnv[i] = "LC_ALL=C"
foundLC = true
}
}
if !foundLC {
hostEnv = append(hostEnv, "LC_ALL=C")
}
sysctl, err := exec.LookPath("/sbin/sysctl")
if err != nil {
return []string{}, err
}
out, err := exec.Command(sysctl, "-n", mib).Output()
cmd := exec.Command(sysctl, "-n", mib)
cmd.Env = hostEnv
out, err := cmd.Output()
if err != nil {
return []string{}, err
}