diff --git a/ocis/pkg/command/server.go b/ocis/pkg/command/server.go index b9a53beeb..a3305f127 100644 --- a/ocis/pkg/command/server.go +++ b/ocis/pkg/command/server.go @@ -35,16 +35,12 @@ func Server(cfg *config.Config) *cli.Command { r := runtime.New() // TODO temporary service startup selection. Should go away and the runtime should take care of it. return r.Start(append([]string{ - "accounts", - "settings", - "konnectd", "proxy", - "ocs", - "phoenix", - "glauth", - "webdav", "store", - "thumbnails", + "settings", + "phoenix", + "ocs", + "webdav", "reva-frontend", "reva-gateway", "reva-users", @@ -58,6 +54,10 @@ func Server(cfg *config.Config) *cli.Command { "reva-storage-oc-data", "reva-storage-public-link", "reva-storage-metadata", + "accounts", + "glauth", + "konnectd", + "thumbnails", }, runtime.MicroServices...)...) }, } diff --git a/ocis/pkg/runtime/runtime.go b/ocis/pkg/runtime/runtime.go index 7ea0a8339..75a407086 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/ocis/pkg/runtime/runtime.go @@ -50,6 +50,7 @@ var ( "reva-storage-oc", "reva-storage-oc-data", "reva-storage-public-link", + "reva-storage-metadata", "accounts", "glauth", "konnectd",