Improve reva storage 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.
This commit is contained in:
Vincent Petry
2020-09-09 12:32:57 +02:00
committed by Phil Davis
parent e6c442fc7c
commit aa46f0abb9
7 changed files with 13 additions and 6 deletions

View File

@@ -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

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {