This commit is contained in:
shoopea 2022-04-16 21:30:47 +08:00
parent ed261141f5
commit 2ae1737081
2 changed files with 17 additions and 13 deletions

4
app.go
View File

@ -433,6 +433,7 @@ func (a AppConfig) CheckZFS() error {
return fmt.Errorf("No path %s on source", string(src))
}
for _, dest := range a.Destinations {
if cfg.Box[dest.Box()].online {
if !cfg.Box[dest.Box()].ZFSIsZFS(dest.Path() + "/" + src.Box() + "/" + src.Path()) {
err := cfg.Box[dest.Box()].ZFSCreateZFS(dest.Path() + "/" + src.Box() + "/" + src.Path())
if err != nil {
@ -444,6 +445,7 @@ func (a AppConfig) CheckZFS() error {
}
}
}
}
return nil
}
@ -658,11 +660,13 @@ func (a AppConfig) CleanupSnapshot() error {
cleanupSnapshot := make(map[string]string)
for _, dest := range a.Destinations {
if cfg.Box[dest.Box()].online {
for _, src := range a.Sources {
cleanupSnapshot[src.Box()] = cleanupSnapshot[src.Box()] + " " + src.Path()
cleanupSnapshot[dest.Box()] = cleanupSnapshot[dest.Box()] + " " + dest.Path() + "/" + src.Box() + "/" + src.Path()
}
}
}
for k, v := range cleanupSnapshot {
if *debugFlag {

View File

@ -1,6 +1,6 @@
// Code generated by version.sh (@generated) DO NOT EDIT.
package main
var githash = "cddb222"
var buildstamp = "2022-04-16_13:10:55"
var commits = "31"
var version = "cddb222-b31 - 2022-04-16_13:10:55"
var githash = "ed26114"
var buildstamp = "2022-04-16_13:30:39"
var commits = "32"
var version = "ed26114-b32 - 2022-04-16_13:30:39"