Skip to content

Commit

Permalink
Merge pull request #68 from stgraber/migrate
Browse files Browse the repository at this point in the history
cmd/lxd-to-incus: Introduce initial tool
  • Loading branch information
brauner authored Sep 7, 2023
2 parents 40707f4 + 10a2d2b commit bd3d2b8
Show file tree
Hide file tree
Showing 8 changed files with 905 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ ifneq "$(INCUS_OFFLINE)" ""
endif
$(GO) get -t -v -d -u ./...
$(GO) mod tidy
cd cmd/lxd-to-incus && $(GO) get -t -v -d -u ./...
cd cmd/lxd-to-incus && $(GO) mod tidy
@echo "Dependencies updated"

.PHONY: update-protobuf
Expand Down
52 changes: 52 additions & 0 deletions cmd/lxd-to-incus/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
module github.com/lxc/incus/cmd/lxd-to-incus

go 1.21.0

require (
github.com/canonical/lxd v0.0.0-20230906180525-bbd424b78d32
github.com/lxc/incus v0.0.0-20230906011158-7c67b413e03b
github.com/spf13/cobra v1.7.0
)

require (
github.com/flosch/pongo2 v0.0.0-20200913210552-0d938eb266f3 // indirect
github.com/fvbommel/sortorder v1.1.0 // indirect
github.com/go-macaroon-bakery/macaroon-bakery/v3 v3.0.1 // indirect
github.com/go-macaroon-bakery/macaroonpb v1.0.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/gorilla/schema v1.2.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gosexy/gettext v0.0.0-20160830220431-74466a0a0c4a // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/juju/webbrowser v1.0.0 // indirect
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/muhlemmer/gu v0.3.1 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pkg/sftp v1.13.6 // indirect
github.com/pkg/xattr v0.4.9 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/zitadel/oidc/v2 v2.8.3 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/term v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/errgo.v1 v1.0.1 // indirect
gopkg.in/httprequest.v1 v1.2.1 // indirect
gopkg.in/macaroon.v2 v2.1.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
251 changes: 251 additions & 0 deletions cmd/lxd-to-incus/go.sum

Large diffs are not rendered by default.

Binary file added cmd/lxd-to-incus/lxd-to-incus
Binary file not shown.
Loading

0 comments on commit bd3d2b8

Please sign in to comment.