Skip to content

Commit 2be8560

Browse files
authored
Merge pull request #58 from AkihiroSuda/zfs-v3
2 parents b0bc5dc + d904e63 commit 2be8560

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ go 1.16
55
require (
66
github.com/containerd/containerd v1.6.1
77
github.com/containerd/continuity v0.2.2
8-
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible
8+
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309
99
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,8 @@ github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3N
574574
github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
575575
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=
576576
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible/go.mod h1:8AuVvqP/mXw1px98n46wfvcGfQ4ci2FwoAjKYxuo3Z4=
577+
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309 h1:1sjvgWVF0rplxJA8d+Tp1H4PR252WfEaSVPlMGpAALU=
578+
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309/go.mod h1:CzVgeB0RvF2EGzQnytKVvVSDwmKJXxkOTUGbNrTja/k=
577579
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
578580
github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
579581
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=

zfs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build linux || freebsd
12
// +build linux freebsd
23

34
/*
@@ -28,8 +29,7 @@ import (
2829
"github.com/containerd/containerd/mount"
2930
"github.com/containerd/containerd/snapshots"
3031
"github.com/containerd/containerd/snapshots/storage"
31-
32-
zfs "github.com/mistifyio/go-zfs"
32+
"github.com/mistifyio/go-zfs/v3"
3333
)
3434

3535
const (

zfs_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build linux
12
// +build linux
23

34
/*
@@ -34,8 +35,7 @@ import (
3435
"github.com/containerd/containerd/snapshots/testsuite"
3536
"github.com/containerd/continuity/fs/fstest"
3637
"github.com/containerd/continuity/testutil/loopback"
37-
38-
zfs "github.com/mistifyio/go-zfs"
38+
"github.com/mistifyio/go-zfs/v3"
3939
)
4040

4141
func newTestZpool() (string, func() error, error) {

0 commit comments

Comments
 (0)