diff --git a/changelog/unreleased/improve-reva-service-descriptions.md b/changelog/unreleased/improve-reva-service-descriptions.md new file mode 100644 index 00000000000..743e08b4633 --- /dev/null +++ b/changelog/unreleased/improve-reva-service-descriptions.md @@ -0,0 +1,7 @@ +Change: Improve reva service descriptions + +The descriptions make it clearer that the services actually represent a +mount point in the combined storage. Each mount point can have a +different driver. + +https://github.com/owncloud/ocis/pull/536 diff --git a/pkg/command/revastorageeos.go b/pkg/command/revastorageeos.go index 7341eb77a13..754f019acc1 100644 --- a/pkg/command/revastorageeos.go +++ b/pkg/command/revastorageeos.go @@ -15,7 +15,7 @@ import ( func RevaStorageEOSCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-eos", - Usage: "Start reva eos storage", + Usage: "Start reva storage service for eos mount", Category: "Extensions", Flags: flagset.StorageEOSWithConfig(cfg.Reva), Action: func(c *cli.Context) error { diff --git a/pkg/command/revastorageeosdata.go b/pkg/command/revastorageeosdata.go index 771b4985c73..5b039373fb3 100644 --- a/pkg/command/revastorageeosdata.go +++ b/pkg/command/revastorageeosdata.go @@ -15,7 +15,7 @@ import ( func RevaStorageEOSDataCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-eos-data", - Usage: "Start reva eos storage dataprovider", + Usage: "Start reva storage data provider for eos mount", Category: "Extensions", Flags: flagset.StorageEOSDataWithConfig(cfg.Reva), Action: func(c *cli.Context) error { diff --git a/pkg/command/revastoragehome.go b/pkg/command/revastoragehome.go index 8290ed38949..1e835b93554 100644 --- a/pkg/command/revastoragehome.go +++ b/pkg/command/revastoragehome.go @@ -15,7 +15,7 @@ import ( func RevaStorageHomeCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-home", - Usage: "Start reva home storage", + Usage: "Start reva storage service for home mount", Category: "Extensions", Flags: flagset.StorageHomeWithConfig(cfg.Reva), Action: func(c *cli.Context) error { diff --git a/pkg/command/revastoragehomedata.go b/pkg/command/revastoragehomedata.go index 0dac03ae610..d174dccb85e 100644 --- a/pkg/command/revastoragehomedata.go +++ b/pkg/command/revastoragehomedata.go @@ -15,7 +15,7 @@ import ( func RevaStorageHomeDataCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-home-data", - Usage: "Start reva home storage dataprovider", + Usage: "Start reva storage data provider for home mount", Category: "Extensions", Flags: flagset.StorageHomeDataWithConfig(cfg.Reva), Action: func(c *cli.Context) error { diff --git a/pkg/command/revastorageoc.go b/pkg/command/revastorageoc.go index ddc8d301f53..e10e9b2dd8c 100644 --- a/pkg/command/revastorageoc.go +++ b/pkg/command/revastorageoc.go @@ -15,7 +15,7 @@ import ( func RevaStorageOCCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-oc", - Usage: "Start reva oc storage", + Usage: "Start reva storage service for oc mount", Category: "Extensions", Flags: flagset.StorageOCWithConfig(cfg.Reva), Action: func(c *cli.Context) error { diff --git a/pkg/command/revastorageocdata.go b/pkg/command/revastorageocdata.go index 4658aeeb5ed..3d24e2bd44d 100644 --- a/pkg/command/revastorageocdata.go +++ b/pkg/command/revastorageocdata.go @@ -15,7 +15,7 @@ import ( func RevaStorageOCDataCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "reva-storage-oc-data", - Usage: "Start reva oc storage dataprovider", + Usage: "Start reva storage data provider for oc mount", Category: "Extensions", Flags: flagset.StorageOCDataWithConfig(cfg.Reva), Action: func(c *cli.Context) error {