Skip to content

Commit bb62a27

Browse files
committed
netctl: provide fallback for user.Current
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 0b11750 commit bb62a27

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

netctl/config.go

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package netctl
22

33
import (
44
"encoding/json"
5+
"errors"
56
"fmt"
67
"io/ioutil"
78
"os"
@@ -12,6 +13,8 @@ import (
1213
contivClient "github.com/contiv/netplugin/contivmodel/client"
1314
)
1415

16+
var errHomeDirectoryNotSet = errors.New("failed to detect HOME directory")
17+
1518
// Config represents the contents of ~/.netctl/config.json
1619
type Config struct {
1720
Token string `json:"token"`
@@ -50,9 +53,19 @@ func configExists(ctx *cli.Context) bool {
5053

5154
// configPath returns the full path to the user's netctl config file
5255
func configPath() string {
56+
var homeDir string
57+
// this fails for static binaries
5358
usr, err := user.Current()
59+
if err == nil {
60+
homeDir = usr.HomeDir
61+
}
62+
// this should work where we don't have static binaries
5463
if err != nil {
55-
panic(err)
64+
homeDir = os.Getenv("HOME")
65+
}
66+
// panic if we've failed to retrieve the home directory
67+
if homeDir == "" {
68+
panic(errHomeDirectoryNotSet)
5669
}
5770

5871
return usr.HomeDir + "/.netctl/config.json"

0 commit comments

Comments
 (0)