missing recv -F

This commit is contained in:
shoopea 2022-06-17 21:54:58 +08:00
parent 324710825d
commit 93169ffb23
2 changed files with 5 additions and 5 deletions

2
app.go
View File

@ -655,7 +655,7 @@ func (a AppConfig) SendSnapshots() (err error) {
if err != nil && err.Error() != "no snapshot" {
return
}
_, err = cfg.Box[dest.Box()].SSHExec("ssh " + cfg.Box[src.Box()].User + "@" + src.Box() + " zfs send -I " + string(sCurrSnapshot) + " " + string(sNextSnapshot) + " | zfs recv " + dest.Path() + "/" + src.Box() + "/" + src.Path())
_, err = cfg.Box[dest.Box()].SSHExec("ssh " + cfg.Box[src.Box()].User + "@" + src.Box() + " zfs send -I " + string(sCurrSnapshot) + " " + string(sNextSnapshot) + " | -F " + dest.Path() + "/" + src.Box() + "/" + src.Path())
if err != nil {
if *debugFlag {
log.Printf("AppConfig.SendSnapshots : %s : Sending snapshot on %s from %s failed (%s)", a.Name, dest.Box(), string(sNextSnapshot), err)

View File

@ -1,6 +1,6 @@
// Code generated by version.sh (@generated) DO NOT EDIT.
package main
var githash = "4d24ded"
var buildstamp = "2022-06-17_13:52:07"
var commits = "36"
var version = "4d24ded-b36 - 2022-06-17_13:52:07"
var githash = "3247108"
var buildstamp = "2022-06-17_13:54:46"
var commits = "37"
var version = "3247108-b37 - 2022-06-17_13:54:46"