Use environment variables to locate Program Files on Windows (#6317)

This commit is contained in:
Mattias Jiderhamn
2019-08-27 22:47:01 +02:00
committed by Daniel Nelson
parent 9f612fd52d
commit 08b903a646
2 changed files with 10 additions and 2 deletions

View File

@@ -641,7 +641,11 @@ func getDefaultConfigPath() (string, error) {
homefile := os.ExpandEnv("${HOME}/.telegraf/telegraf.conf")
etcfile := "/etc/telegraf/telegraf.conf"
if runtime.GOOS == "windows" {
etcfile = `C:\Program Files\Telegraf\telegraf.conf`
programFiles := os.Getenv("ProgramFiles")
if programFiles == "" { // Should never happen
programFiles = `C:\Program Files`
}
etcfile = programFiles + `\Telegraf\telegraf.conf`
}
for _, path := range []string{envfile, homefile, etcfile} {
if _, err := os.Stat(path); err == nil {