diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-18 18:44:52 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-18 18:50:59 +0200 |
commit | 1c6af6236743aa0963d4919b5ef42627efa6aca7 (patch) | |
tree | 61c33256f1f92c169df04659038a70793a44ede2 /lib/xdsconfig/config.go | |
parent | 8d6d7494cf0f9c0f14b5082820082e85576a41da (diff) |
Fix default config values.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/xdsconfig/config.go')
-rw-r--r-- | lib/xdsconfig/config.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/xdsconfig/config.go b/lib/xdsconfig/config.go index 7d762c7..854d383 100644 --- a/lib/xdsconfig/config.go +++ b/lib/xdsconfig/config.go @@ -25,7 +25,6 @@ type Config struct { // Config default values const ( DefaultAPIVersion = "1" - DefaultPort = "8010" DefaultLogLevel = "error" ) @@ -39,8 +38,14 @@ func Init(ctx *cli.Context, log *logrus.Logger) (*Config, error) { APIVersion: DefaultAPIVersion, VersionGitTag: ctx.App.Metadata["git-tag"].(string), - HTTPPort: DefaultPort, - Log: log, + HTTPPort: "8010", + FileConf: &FileConfig{ + LogsDir: "/tmp/logs", + SThgConf: &SyncThingConf{ + Home: "${HOME}/.xds/agent/syncthing-config", + }, + }, + Log: log, } // config file settings overwrite default config |