Skip to content

Commit

Permalink
Improve reva storage service descriptions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Vincent Petry authored and phil-davis committed Sep 16, 2020
1 parent bec637d commit 46d0926
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions changelog/unreleased/improve-reva-service-descriptions.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pkg/command/revastorageeos.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/revastorageeosdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/revastoragehome.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/revastoragehomedata.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/revastorageoc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/command/revastorageocdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 46d0926

Please sign in to comment.