Skip to content

Commit b2251e7

Browse files
committed
incusd/storage/nfs: Add trivial volume migration
Signed-off-by: Benjamin Somers <benjamin.somers@imt-atlantique.fr>
1 parent dac2899 commit b2251e7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package drivers
2+
3+
import (
4+
"io"
5+
6+
"github.com/lxc/incus/v6/internal/server/migration"
7+
"github.com/lxc/incus/v6/internal/server/operations"
8+
)
9+
10+
// MigrateVolume sends a volume for migration.
11+
func (n *nfs) MigrateVolume(vol Volume, conn io.ReadWriteCloser, volSrcArgs *migration.VolumeSourceArgs, op *operations.Operation) error {
12+
return nil
13+
}

0 commit comments

Comments
 (0)