From 26aafdfd087e3bd3e7bcf6bcca611b7a8290b93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 10 Jan 2025 15:08:18 +0100 Subject: [PATCH] change binary name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- {ocis => opencloud}/.dockerignore | 0 {ocis => opencloud}/Makefile | 0 {ocis => opencloud}/README.md | 0 {ocis/cmd/ocis => opencloud/cmd/opencloud}/main.go | 2 +- {ocis => opencloud}/docker/Dockerfile.linux.amd64 | 0 {ocis => opencloud}/docker/Dockerfile.linux.arm64 | 0 {ocis => opencloud}/docker/Dockerfile.linux.debug.amd64 | 0 {ocis => opencloud}/docker/manifest-latest.tmpl | 0 {ocis => opencloud}/docker/manifest.production-latest.tmpl | 0 {ocis => opencloud}/docker/manifest.production.tmpl | 0 {ocis => opencloud}/docker/manifest.tmpl | 0 {ocis => opencloud}/pkg/backup/backup.go | 0 {ocis => opencloud}/pkg/backup/backup_test.go | 2 +- {ocis => opencloud}/pkg/backup/provider.go | 0 {ocis => opencloud}/pkg/command/backup.go | 4 ++-- {ocis => opencloud}/pkg/command/benchmark.go | 2 +- {ocis => opencloud}/pkg/command/decomposedfs.go | 2 +- {ocis => opencloud}/pkg/command/helper/common.go | 0 {ocis => opencloud}/pkg/command/init.go | 4 ++-- {ocis => opencloud}/pkg/command/list.go | 2 +- {ocis => opencloud}/pkg/command/migrate.go | 2 +- {ocis => opencloud}/pkg/command/revisions.go | 4 ++-- {ocis => opencloud}/pkg/command/root.go | 6 +++--- {ocis => opencloud}/pkg/command/server.go | 4 ++-- {ocis => opencloud}/pkg/command/services.go | 4 ++-- {ocis => opencloud}/pkg/command/shares.go | 2 +- {ocis => opencloud}/pkg/command/trash.go | 5 +++-- {ocis => opencloud}/pkg/command/version.go | 2 +- {ocis => opencloud}/pkg/init/functions.go | 0 {ocis => opencloud}/pkg/init/init.go | 0 {ocis => opencloud}/pkg/init/structs.go | 0 {ocis => opencloud}/pkg/register/command.go | 0 {ocis => opencloud}/pkg/revisions/revisions.go | 0 {ocis => opencloud}/pkg/revisions/revisions_test.go | 0 {ocis => opencloud}/pkg/runtime/README.md | 0 {ocis => opencloud}/pkg/runtime/cmd/list.go | 2 +- {ocis => opencloud}/pkg/runtime/config/config.go | 0 {ocis => opencloud}/pkg/runtime/options.go | 0 {ocis => opencloud}/pkg/runtime/runtime.go | 2 +- {ocis => opencloud}/pkg/runtime/service/option.go | 0 {ocis => opencloud}/pkg/runtime/service/service.go | 0 {ocis => opencloud}/pkg/runtime/service/sutureservice.go | 0 {ocis => opencloud}/pkg/trash/trash.go | 0 {ocis => opencloud}/reflex.conf | 0 44 files changed, 26 insertions(+), 25 deletions(-) rename {ocis => opencloud}/.dockerignore (100%) rename {ocis => opencloud}/Makefile (100%) rename {ocis => opencloud}/README.md (100%) rename {ocis/cmd/ocis => opencloud/cmd/opencloud}/main.go (72%) rename {ocis => opencloud}/docker/Dockerfile.linux.amd64 (100%) rename {ocis => opencloud}/docker/Dockerfile.linux.arm64 (100%) rename {ocis => opencloud}/docker/Dockerfile.linux.debug.amd64 (100%) rename {ocis => opencloud}/docker/manifest-latest.tmpl (100%) rename {ocis => opencloud}/docker/manifest.production-latest.tmpl (100%) rename {ocis => opencloud}/docker/manifest.production.tmpl (100%) rename {ocis => opencloud}/docker/manifest.tmpl (100%) rename {ocis => opencloud}/pkg/backup/backup.go (100%) rename {ocis => opencloud}/pkg/backup/backup_test.go (98%) rename {ocis => opencloud}/pkg/backup/provider.go (100%) rename {ocis => opencloud}/pkg/command/backup.go (95%) rename {ocis => opencloud}/pkg/command/benchmark.go (99%) rename {ocis => opencloud}/pkg/command/decomposedfs.go (99%) rename {ocis => opencloud}/pkg/command/helper/common.go (100%) rename {ocis => opencloud}/pkg/command/init.go (95%) rename {ocis => opencloud}/pkg/command/list.go (95%) rename {ocis => opencloud}/pkg/command/migrate.go (99%) rename {ocis => opencloud}/pkg/command/revisions.go (97%) rename {ocis => opencloud}/pkg/command/root.go (85%) rename {ocis => opencloud}/pkg/command/server.go (87%) rename {ocis => opencloud}/pkg/command/services.go (99%) rename {ocis => opencloud}/pkg/command/shares.go (98%) rename {ocis => opencloud}/pkg/command/trash.go (92%) rename {ocis => opencloud}/pkg/command/version.go (96%) rename {ocis => opencloud}/pkg/init/functions.go (100%) rename {ocis => opencloud}/pkg/init/init.go (100%) rename {ocis => opencloud}/pkg/init/structs.go (100%) rename {ocis => opencloud}/pkg/register/command.go (100%) rename {ocis => opencloud}/pkg/revisions/revisions.go (100%) rename {ocis => opencloud}/pkg/revisions/revisions_test.go (100%) rename {ocis => opencloud}/pkg/runtime/README.md (100%) rename {ocis => opencloud}/pkg/runtime/cmd/list.go (90%) rename {ocis => opencloud}/pkg/runtime/config/config.go (100%) rename {ocis => opencloud}/pkg/runtime/options.go (100%) rename {ocis => opencloud}/pkg/runtime/runtime.go (86%) rename {ocis => opencloud}/pkg/runtime/service/option.go (100%) rename {ocis => opencloud}/pkg/runtime/service/service.go (100%) rename {ocis => opencloud}/pkg/runtime/service/sutureservice.go (100%) rename {ocis => opencloud}/pkg/trash/trash.go (100%) rename {ocis => opencloud}/reflex.conf (100%) diff --git a/ocis/.dockerignore b/opencloud/.dockerignore similarity index 100% rename from ocis/.dockerignore rename to opencloud/.dockerignore diff --git a/ocis/Makefile b/opencloud/Makefile similarity index 100% rename from ocis/Makefile rename to opencloud/Makefile diff --git a/ocis/README.md b/opencloud/README.md similarity index 100% rename from ocis/README.md rename to opencloud/README.md diff --git a/ocis/cmd/ocis/main.go b/opencloud/cmd/opencloud/main.go similarity index 72% rename from ocis/cmd/ocis/main.go rename to opencloud/cmd/opencloud/main.go index c27afe766..7968efc1d 100644 --- a/ocis/cmd/ocis/main.go +++ b/opencloud/cmd/opencloud/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/opencloud-eu/opencloud/ocis/pkg/command" + "github.com/opencloud-eu/opencloud/opencloud/pkg/command" ) func main() { diff --git a/ocis/docker/Dockerfile.linux.amd64 b/opencloud/docker/Dockerfile.linux.amd64 similarity index 100% rename from ocis/docker/Dockerfile.linux.amd64 rename to opencloud/docker/Dockerfile.linux.amd64 diff --git a/ocis/docker/Dockerfile.linux.arm64 b/opencloud/docker/Dockerfile.linux.arm64 similarity index 100% rename from ocis/docker/Dockerfile.linux.arm64 rename to opencloud/docker/Dockerfile.linux.arm64 diff --git a/ocis/docker/Dockerfile.linux.debug.amd64 b/opencloud/docker/Dockerfile.linux.debug.amd64 similarity index 100% rename from ocis/docker/Dockerfile.linux.debug.amd64 rename to opencloud/docker/Dockerfile.linux.debug.amd64 diff --git a/ocis/docker/manifest-latest.tmpl b/opencloud/docker/manifest-latest.tmpl similarity index 100% rename from ocis/docker/manifest-latest.tmpl rename to opencloud/docker/manifest-latest.tmpl diff --git a/ocis/docker/manifest.production-latest.tmpl b/opencloud/docker/manifest.production-latest.tmpl similarity index 100% rename from ocis/docker/manifest.production-latest.tmpl rename to opencloud/docker/manifest.production-latest.tmpl diff --git a/ocis/docker/manifest.production.tmpl b/opencloud/docker/manifest.production.tmpl similarity index 100% rename from ocis/docker/manifest.production.tmpl rename to opencloud/docker/manifest.production.tmpl diff --git a/ocis/docker/manifest.tmpl b/opencloud/docker/manifest.tmpl similarity index 100% rename from ocis/docker/manifest.tmpl rename to opencloud/docker/manifest.tmpl diff --git a/ocis/pkg/backup/backup.go b/opencloud/pkg/backup/backup.go similarity index 100% rename from ocis/pkg/backup/backup.go rename to opencloud/pkg/backup/backup.go diff --git a/ocis/pkg/backup/backup_test.go b/opencloud/pkg/backup/backup_test.go similarity index 98% rename from ocis/pkg/backup/backup_test.go rename to opencloud/pkg/backup/backup_test.go index 148f367c2..1b3855c40 100644 --- a/ocis/pkg/backup/backup_test.go +++ b/opencloud/pkg/backup/backup_test.go @@ -3,7 +3,7 @@ package backup_test import ( "testing" - "github.com/opencloud-eu/opencloud/ocis/pkg/backup" + "github.com/opencloud-eu/opencloud/opencloud/pkg/backup" "github.com/test-go/testify/require" ) diff --git a/ocis/pkg/backup/provider.go b/opencloud/pkg/backup/provider.go similarity index 100% rename from ocis/pkg/backup/provider.go rename to opencloud/pkg/backup/provider.go diff --git a/ocis/pkg/command/backup.go b/opencloud/pkg/command/backup.go similarity index 95% rename from ocis/pkg/command/backup.go rename to opencloud/pkg/command/backup.go index 875fe972b..cb5cfa8e0 100644 --- a/ocis/pkg/command/backup.go +++ b/opencloud/pkg/command/backup.go @@ -9,8 +9,8 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" - "github.com/opencloud-eu/opencloud/ocis/pkg/backup" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/backup" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/benchmark.go b/opencloud/pkg/command/benchmark.go similarity index 99% rename from ocis/pkg/command/benchmark.go rename to opencloud/pkg/command/benchmark.go index 5052b4004..233dcf85b 100644 --- a/ocis/pkg/command/benchmark.go +++ b/opencloud/pkg/command/benchmark.go @@ -17,7 +17,7 @@ import ( tw "github.com/olekukonko/tablewriter" "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/version" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/pkg/xattr" "github.com/rogpeppe/go-internal/lockedfile" "github.com/urfave/cli/v2" diff --git a/ocis/pkg/command/decomposedfs.go b/opencloud/pkg/command/decomposedfs.go similarity index 99% rename from ocis/pkg/command/decomposedfs.go rename to opencloud/pkg/command/decomposedfs.go index 278b94aa8..7b344a0a9 100644 --- a/ocis/pkg/command/decomposedfs.go +++ b/opencloud/pkg/command/decomposedfs.go @@ -23,7 +23,7 @@ import ( "github.com/cs3org/reva/v2/pkg/storagespace" "github.com/cs3org/reva/v2/pkg/store" "github.com/opencloud-eu/opencloud/ocis-pkg/config" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/rs/zerolog" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/helper/common.go b/opencloud/pkg/command/helper/common.go similarity index 100% rename from ocis/pkg/command/helper/common.go rename to opencloud/pkg/command/helper/common.go diff --git a/ocis/pkg/command/init.go b/opencloud/pkg/command/init.go similarity index 95% rename from ocis/pkg/command/init.go rename to opencloud/pkg/command/init.go index 3ac540d52..19b15bdc9 100644 --- a/ocis/pkg/command/init.go +++ b/opencloud/pkg/command/init.go @@ -9,8 +9,8 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/defaults" - ocisinit "github.com/opencloud-eu/opencloud/ocis/pkg/init" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + ocisinit "github.com/opencloud-eu/opencloud/opencloud/pkg/init" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" cli "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/list.go b/opencloud/pkg/command/list.go similarity index 95% rename from ocis/pkg/command/list.go rename to opencloud/pkg/command/list.go index fea8db725..d07f7e91f 100644 --- a/ocis/pkg/command/list.go +++ b/opencloud/pkg/command/list.go @@ -7,7 +7,7 @@ import ( "net/rpc" "github.com/opencloud-eu/opencloud/ocis-pkg/config" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/migrate.go b/opencloud/pkg/command/migrate.go similarity index 99% rename from ocis/pkg/command/migrate.go rename to opencloud/pkg/command/migrate.go index 9f9ec602c..2fbf1bfca 100644 --- a/ocis/pkg/command/migrate.go +++ b/opencloud/pkg/command/migrate.go @@ -35,7 +35,7 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" oclog "github.com/opencloud-eu/opencloud/ocis-pkg/log" mregistry "github.com/opencloud-eu/opencloud/ocis-pkg/registry" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" sharing "github.com/opencloud-eu/opencloud/services/sharing/pkg/config" sharingparser "github.com/opencloud-eu/opencloud/services/sharing/pkg/config/parser" "github.com/urfave/cli/v2" diff --git a/ocis/pkg/command/revisions.go b/opencloud/pkg/command/revisions.go similarity index 97% rename from ocis/pkg/command/revisions.go rename to opencloud/pkg/command/revisions.go index 7299dc7cc..9de667aab 100644 --- a/ocis/pkg/command/revisions.go +++ b/opencloud/pkg/command/revisions.go @@ -13,8 +13,8 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" - "github.com/opencloud-eu/opencloud/ocis/pkg/revisions" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/revisions" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/root.go b/opencloud/pkg/command/root.go similarity index 85% rename from ocis/pkg/command/root.go rename to opencloud/pkg/command/root.go index 3b075450a..4e195ce29 100644 --- a/ocis/pkg/command/root.go +++ b/opencloud/pkg/command/root.go @@ -8,7 +8,7 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/clihelper" "github.com/opencloud-eu/opencloud/ocis-pkg/config" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/urfave/cli/v2" ) @@ -17,8 +17,8 @@ func Execute() error { cfg := config.DefaultConfig() app := clihelper.DefaultApp(&cli.App{ - Name: "ocis", - Usage: "ownCloud Infinite Scale", + Name: "opencloud", + Usage: "opencloud", }) for _, fn := range register.Commands { diff --git a/ocis/pkg/command/server.go b/opencloud/pkg/command/server.go similarity index 87% rename from ocis/pkg/command/server.go rename to opencloud/pkg/command/server.go index c8f69f033..b5ca3da3e 100644 --- a/ocis/pkg/command/server.go +++ b/opencloud/pkg/command/server.go @@ -4,8 +4,8 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" - "github.com/opencloud-eu/opencloud/ocis/pkg/runtime" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/runtime" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/services.go b/opencloud/pkg/command/services.go similarity index 99% rename from ocis/pkg/command/services.go rename to opencloud/pkg/command/services.go index 760e61d04..141f9da80 100644 --- a/ocis/pkg/command/services.go +++ b/opencloud/pkg/command/services.go @@ -6,8 +6,8 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" - "github.com/opencloud-eu/opencloud/ocis/pkg/command/helper" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/command/helper" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" activitylog "github.com/opencloud-eu/opencloud/services/activitylog/pkg/command" antivirus "github.com/opencloud-eu/opencloud/services/antivirus/pkg/command" appprovider "github.com/opencloud-eu/opencloud/services/app-provider/pkg/command" diff --git a/ocis/pkg/command/shares.go b/opencloud/pkg/command/shares.go similarity index 98% rename from ocis/pkg/command/shares.go rename to opencloud/pkg/command/shares.go index d2ca1f6d5..ecc5a1623 100644 --- a/ocis/pkg/command/shares.go +++ b/opencloud/pkg/command/shares.go @@ -15,7 +15,7 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" mregistry "github.com/opencloud-eu/opencloud/ocis-pkg/registry" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" sharingparser "github.com/opencloud-eu/opencloud/services/sharing/pkg/config/parser" ) diff --git a/ocis/pkg/command/trash.go b/opencloud/pkg/command/trash.go similarity index 92% rename from ocis/pkg/command/trash.go rename to opencloud/pkg/command/trash.go index 5bc0807f1..586f13659 100644 --- a/ocis/pkg/command/trash.go +++ b/opencloud/pkg/command/trash.go @@ -2,12 +2,13 @@ package command import ( "fmt" - "github.com/opencloud-eu/opencloud/ocis/pkg/trash" + + "github.com/opencloud-eu/opencloud/opencloud/pkg/trash" "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/config/configlog" "github.com/opencloud-eu/opencloud/ocis-pkg/config/parser" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" "github.com/urfave/cli/v2" ) diff --git a/ocis/pkg/command/version.go b/opencloud/pkg/command/version.go similarity index 96% rename from ocis/pkg/command/version.go rename to opencloud/pkg/command/version.go index 28ab01826..8e2511a50 100644 --- a/ocis/pkg/command/version.go +++ b/opencloud/pkg/command/version.go @@ -11,7 +11,7 @@ import ( "github.com/opencloud-eu/opencloud/ocis-pkg/config" "github.com/opencloud-eu/opencloud/ocis-pkg/registry" "github.com/opencloud-eu/opencloud/ocis-pkg/version" - "github.com/opencloud-eu/opencloud/ocis/pkg/register" + "github.com/opencloud-eu/opencloud/opencloud/pkg/register" ) const ( diff --git a/ocis/pkg/init/functions.go b/opencloud/pkg/init/functions.go similarity index 100% rename from ocis/pkg/init/functions.go rename to opencloud/pkg/init/functions.go diff --git a/ocis/pkg/init/init.go b/opencloud/pkg/init/init.go similarity index 100% rename from ocis/pkg/init/init.go rename to opencloud/pkg/init/init.go diff --git a/ocis/pkg/init/structs.go b/opencloud/pkg/init/structs.go similarity index 100% rename from ocis/pkg/init/structs.go rename to opencloud/pkg/init/structs.go diff --git a/ocis/pkg/register/command.go b/opencloud/pkg/register/command.go similarity index 100% rename from ocis/pkg/register/command.go rename to opencloud/pkg/register/command.go diff --git a/ocis/pkg/revisions/revisions.go b/opencloud/pkg/revisions/revisions.go similarity index 100% rename from ocis/pkg/revisions/revisions.go rename to opencloud/pkg/revisions/revisions.go diff --git a/ocis/pkg/revisions/revisions_test.go b/opencloud/pkg/revisions/revisions_test.go similarity index 100% rename from ocis/pkg/revisions/revisions_test.go rename to opencloud/pkg/revisions/revisions_test.go diff --git a/ocis/pkg/runtime/README.md b/opencloud/pkg/runtime/README.md similarity index 100% rename from ocis/pkg/runtime/README.md rename to opencloud/pkg/runtime/README.md diff --git a/ocis/pkg/runtime/cmd/list.go b/opencloud/pkg/runtime/cmd/list.go similarity index 90% rename from ocis/pkg/runtime/cmd/list.go rename to opencloud/pkg/runtime/cmd/list.go index 21c8c1c19..66cdb268c 100644 --- a/ocis/pkg/runtime/cmd/list.go +++ b/opencloud/pkg/runtime/cmd/list.go @@ -6,7 +6,7 @@ import ( "net" "net/rpc" - "github.com/opencloud-eu/opencloud/ocis/pkg/runtime/config" + "github.com/opencloud-eu/opencloud/opencloud/pkg/runtime/config" "github.com/spf13/cobra" ) diff --git a/ocis/pkg/runtime/config/config.go b/opencloud/pkg/runtime/config/config.go similarity index 100% rename from ocis/pkg/runtime/config/config.go rename to opencloud/pkg/runtime/config/config.go diff --git a/ocis/pkg/runtime/options.go b/opencloud/pkg/runtime/options.go similarity index 100% rename from ocis/pkg/runtime/options.go rename to opencloud/pkg/runtime/options.go diff --git a/ocis/pkg/runtime/runtime.go b/opencloud/pkg/runtime/runtime.go similarity index 86% rename from ocis/pkg/runtime/runtime.go rename to opencloud/pkg/runtime/runtime.go index 18e8ae5a3..8f2ef64cc 100644 --- a/ocis/pkg/runtime/runtime.go +++ b/opencloud/pkg/runtime/runtime.go @@ -4,7 +4,7 @@ import ( "context" "github.com/opencloud-eu/opencloud/ocis-pkg/config" - "github.com/opencloud-eu/opencloud/ocis/pkg/runtime/service" + "github.com/opencloud-eu/opencloud/opencloud/pkg/runtime/service" ) // Runtime represents an oCIS runtime environment. diff --git a/ocis/pkg/runtime/service/option.go b/opencloud/pkg/runtime/service/option.go similarity index 100% rename from ocis/pkg/runtime/service/option.go rename to opencloud/pkg/runtime/service/option.go diff --git a/ocis/pkg/runtime/service/service.go b/opencloud/pkg/runtime/service/service.go similarity index 100% rename from ocis/pkg/runtime/service/service.go rename to opencloud/pkg/runtime/service/service.go diff --git a/ocis/pkg/runtime/service/sutureservice.go b/opencloud/pkg/runtime/service/sutureservice.go similarity index 100% rename from ocis/pkg/runtime/service/sutureservice.go rename to opencloud/pkg/runtime/service/sutureservice.go diff --git a/ocis/pkg/trash/trash.go b/opencloud/pkg/trash/trash.go similarity index 100% rename from ocis/pkg/trash/trash.go rename to opencloud/pkg/trash/trash.go diff --git a/ocis/reflex.conf b/opencloud/reflex.conf similarity index 100% rename from ocis/reflex.conf rename to opencloud/reflex.conf