diff --git a/accounts/pkg/command/accounts_example_config.yaml b/accounts/pkg/command/accounts_example_config.yaml index 38d8419e05..bb3c6019da 100644 --- a/accounts/pkg/command/accounts_example_config.yaml +++ b/accounts/pkg/command/accounts_example_config.yaml @@ -2,3 +2,6 @@ log: level: info color: true pretty: true +repo: + cs3: + provider_addr: "localhost:9214" diff --git a/accounts/pkg/command/root.go b/accounts/pkg/command/root.go index 989a5841e2..325b589bd4 100644 --- a/accounts/pkg/command/root.go +++ b/accounts/pkg/command/root.go @@ -27,16 +27,12 @@ func Execute(cfg *config.Config) error { Version: version.String, Usage: "Provide accounts and groups for oCIS", Compiled: version.Compiled(), - Authors: []*cli.Author{ { Name: "ownCloud GmbH", Email: "support@owncloud.com", }, }, - - //Flags: flagset.RootWithConfig(cfg), - Before: func(c *cli.Context) error { cfg.Server.Version = version.String return ParseConfig(c, cfg)