Change default path for owncloud driver

This commit is contained in:
Michael Barz
2020-10-06 08:51:29 +02:00
parent 8807b2a5c1
commit 9ce9602ed6

View File

@@ -10,7 +10,7 @@ func DriverOwnCloudWithConfig(cfg *config.Config) []cli.Flag {
return []cli.Flag{
&cli.StringFlag{
Name: "storage-owncloud-datadir",
Value: "/var/tmp/ocis/data",
Value: "/var/tmp/ocis/owncloud",
Usage: "the path to the owncloud data directory",
EnvVars: []string{"STORAGE_STORAGE_OWNCLOUD_DATADIR"},
Destination: &cfg.Reva.Storages.OwnCloud.Root,