X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=lib%2Fxdsconfig%2Fconfig.go;h=854d383ff1b5fa19d4c45ebb3ce3b6e3374586e7;hb=1c6af6236743aa0963d4919b5ef42627efa6aca7;hp=7d762c708cdae516497c3e4f677fbf75c9a657f2;hpb=8d6d7494cf0f9c0f14b5082820082e85576a41da;p=src%2Fxds%2Fxds-agent.git 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