From 9ce9602ed64e9d8cb44ab49646879de28feb4c10 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Tue, 6 Oct 2020 08:51:29 +0200 Subject: [PATCH] Change default path for owncloud driver --- storage/pkg/flagset/driverowncloud.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/pkg/flagset/driverowncloud.go b/storage/pkg/flagset/driverowncloud.go index b41e8f9c2..44960040a 100644 --- a/storage/pkg/flagset/driverowncloud.go +++ b/storage/pkg/flagset/driverowncloud.go @@ -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,