backup/app.go

689 lines
18 KiB
Go
Raw Normal View History

2021-10-16 15:39:54 +02:00
package main
import (
"fmt"
"log"
"regexp"
"time"
)
type AppConfig struct {
Name string `json:"name"`
Schedule []string `json:"schedule"`
Sources []Location `json:"src"`
Destinations []Location `json:"dest"`
Before map[string]Location `json:"before"`
After map[string]Location `json:"after"`
}
func (a AppConfig) getTime() time.Time {
for _, v := range a.Sources {
2021-11-14 03:53:13 +01:00
return cfg.Box[v.Box()].GetTime()
2021-10-16 15:39:54 +02:00
}
for _, v := range a.Destinations {
2021-11-14 03:53:13 +01:00
return cfg.Box[v.Box()].GetTime()
2021-10-16 15:39:54 +02:00
}
return time.Now()
}
func (a AppConfig) getSchedule() (string, error) {
var schedule string
if *debugFlag {
log.Printf("AppConfig.getSchedule : %s : Start", a.Name)
}
refreshSnapshot := make(map[string]bool)
for _, v := range a.Sources {
refreshSnapshot[v.Box()] = true
}
for k, _ := range refreshSnapshot {
2021-11-14 03:53:13 +01:00
err := cfg.Box[k].ZFSUpdateSnapshotList()
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-11-14 03:53:13 +01:00
log.Printf("AppConfig.getSchedule : %s : ZFSUpdateSnapshotList(%s) : %s", a.Name, k, err)
2021-10-16 15:39:54 +02:00
}
return "", err
}
}
if *schedFlag != "" {
schedule = *schedFlag
} else if a.needYearlySnapshot() {
schedule = "yearly"
} else if a.needMonthlySnapshot() {
schedule = "monthly"
} else if a.needWeeklySnapshot() {
schedule = "weekly"
} else if a.needDailySnapshot() {
schedule = "daily"
} else if a.needHourlySnapshot() {
schedule = "hourly"
} else {
return schedule, nil
}
if ret, ok := cfg.Zfsnap[schedule]; !ok {
return "", fmt.Errorf("no retention for %s", schedule)
} else {
re := regexp.MustCompile(`^([0-9]+[ymwdhMs]{1}|forever)$`)
if !re.MatchString(ret) {
return "", fmt.Errorf("wrong retention format for %s", schedule)
}
}
return schedule, nil
}
func (a AppConfig) needYearlySnapshot() bool {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : Start", a.Name)
}
ret := false
// schedule enabled for app ?
for _, v := range a.Schedule {
if v == "yearly" {
ret = true
}
}
if !ret {
return false
}
// finding out the timestamps existing
timeSource := make(map[string]map[time.Time]struct{})
timeTotal := make(map[time.Time]struct{})
re := regexp.MustCompile(`^yearly-(?P<Date>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})--([0-9]+[ymwdhMs]{1}|forever)$`)
for _, src := range a.Sources {
timeSource[string(src)] = make(map[time.Time]struct{})
2021-11-14 03:53:13 +01:00
for _, snap := range cfg.Box[src.Box()].ZFSGetSnapshotList() {
2021-10-16 15:39:54 +02:00
if src.Path() == snap.Path() {
if re.MatchString(snap.Name()) {
dateString := re.ReplaceAllString(snap.Name(), "${Date}")
dateTime, err := time.Parse("2006-01-02_15.04.05", dateString)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : time.Parse(%s) : %s", a.Name, dateString, err)
}
} else {
timeSource[string(src)][dateTime] = struct{}{}
timeTotal[dateTime] = struct{}{}
}
}
}
}
}
// cleaning up the available timestamps for common timestamps
for t, _ := range timeTotal {
for _, v := range timeSource {
if _, ok := v[t]; !ok {
delete(timeTotal, t)
}
}
}
// finding an eligible timestamp
now := a.getTime()
for t, _ := range timeTotal {
if t.Year() == now.Year() {
return false
}
}
// no timestamp => need the snapshot !
return true
}
func (a AppConfig) needMonthlySnapshot() bool {
if *debugFlag {
log.Printf("AppConfig.needMonthlySnapshot : %s : Start", a.Name)
}
ret := false
// schedule enabled for app ?
for _, v := range a.Schedule {
if v == "monthly" {
ret = true
}
}
if !ret {
return false
}
// finding out the timestamps existing
timeSource := make(map[string]map[time.Time]struct{})
timeTotal := make(map[time.Time]struct{})
re := regexp.MustCompile(`^(yearly|monthly)-(?P<Date>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})--([0-9]+[ymwdhMs]{1}|forever)$`)
for _, src := range a.Sources {
timeSource[string(src)] = make(map[time.Time]struct{})
2021-11-14 03:53:13 +01:00
for _, snap := range cfg.Box[src.Box()].ZFSGetSnapshotList() {
2021-10-16 15:39:54 +02:00
if src.Path() == snap.Path() {
if re.MatchString(snap.Name()) {
dateString := re.ReplaceAllString(snap.Name(), "${Date}")
dateTime, err := time.Parse("2006-01-02_15.04.05", dateString)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : time.Parse(%s) : %s", a.Name, dateString, err)
}
} else {
timeSource[string(src)][dateTime] = struct{}{}
timeTotal[dateTime] = struct{}{}
}
}
}
}
}
// cleaning up the available timestamps for common timestamps
for t, _ := range timeTotal {
for _, v := range timeSource {
if _, ok := v[t]; !ok {
delete(timeTotal, t)
}
}
}
// finding an eligible timestamp
now := a.getTime()
for t, _ := range timeTotal {
if t.Year() == now.Year() && t.Month() == now.Month() {
return false
}
}
// no timestamp => need the snapshot !
return true
}
func (a AppConfig) needWeeklySnapshot() bool {
if *debugFlag {
log.Printf("AppConfig.needWeeklySnapshot : %s : Start", a.Name)
}
ret := false
// schedule enabled for app ?
for _, v := range a.Schedule {
if v == "weekly" {
ret = true
}
}
if !ret {
return false
}
// finding out the timestamps existing
timeSource := make(map[string]map[time.Time]struct{})
timeTotal := make(map[time.Time]struct{})
re := regexp.MustCompile(`^(yearly|monthly|weekly)-(?P<Date>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})--([0-9]+[ymwdhMs]{1}|forever)$`)
for _, src := range a.Sources {
timeSource[string(src)] = make(map[time.Time]struct{})
2021-11-14 03:53:13 +01:00
for _, snap := range cfg.Box[src.Box()].ZFSGetSnapshotList() {
2021-10-16 15:39:54 +02:00
if src.Path() == snap.Path() {
if re.MatchString(snap.Name()) {
dateString := re.ReplaceAllString(snap.Name(), "${Date}")
dateTime, err := time.Parse("2006-01-02_15.04.05", dateString)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : time.Parse(%s) : %s", a.Name, dateString, err)
}
} else {
timeSource[string(src)][dateTime] = struct{}{}
timeTotal[dateTime] = struct{}{}
}
}
}
}
}
// cleaning up the available timestamps for common timestamps
for t, _ := range timeTotal {
for _, v := range timeSource {
if _, ok := v[t]; !ok {
delete(timeTotal, t)
}
}
}
// finding an eligible timestamp
now := a.getTime()
nowYear, nowWeek := now.ISOWeek()
for t, _ := range timeTotal {
snapYear, snapWeek := t.ISOWeek()
if nowYear == snapYear && nowWeek == snapWeek {
return false
}
}
// no timestamp => need the snapshot !
return true
}
func (a AppConfig) needDailySnapshot() bool {
if *debugFlag {
log.Printf("AppConfig.needDailySnapshot : %s : Start", a.Name)
}
ret := false
// schedule enabled for app ?
for _, v := range a.Schedule {
if v == "daily" {
ret = true
}
}
if !ret {
return false
}
// finding out the timestamps existing
timeSource := make(map[string]map[time.Time]struct{})
timeTotal := make(map[time.Time]struct{})
re := regexp.MustCompile(`^(yearly|monthly|weekly|daily)-(?P<Date>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})--([0-9]+[ymwdhMs]{1}|forever)$`)
for _, src := range a.Sources {
timeSource[string(src)] = make(map[time.Time]struct{})
2021-11-14 03:53:13 +01:00
for _, snap := range cfg.Box[src.Box()].ZFSGetSnapshotList() {
2021-10-16 15:39:54 +02:00
if src.Path() == snap.Path() {
if re.MatchString(snap.Name()) {
dateString := re.ReplaceAllString(snap.Name(), "${Date}")
dateTime, err := time.Parse("2006-01-02_15.04.05", dateString)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : time.Parse(%s) : %s", a.Name, dateString, err)
}
} else {
timeSource[string(src)][dateTime] = struct{}{}
timeTotal[dateTime] = struct{}{}
}
}
}
}
}
// cleaning up the available timestamps for common timestamps
for t, _ := range timeTotal {
for _, v := range timeSource {
if _, ok := v[t]; !ok {
delete(timeTotal, t)
}
}
}
// finding an eligible timestamp
now := a.getTime()
for t, _ := range timeTotal {
if t.Year() == now.Year() && t.Month() == now.Month() && t.Day() == now.Day() {
return false
}
}
// no timestamp => need the snapshot !
return true
}
func (a AppConfig) needHourlySnapshot() bool {
if *debugFlag {
log.Printf("AppConfig.needHourlySnapshot : %s : Start", a.Name)
}
ret := false
// schedule enabled for app ?
for _, v := range a.Schedule {
if v == "hourly" {
ret = true
}
}
if !ret {
return false
}
// finding out the timestamps existing
timeSource := make(map[string]map[time.Time]struct{})
timeTotal := make(map[time.Time]struct{})
re := regexp.MustCompile(`^(yearly|monthly|weekly|daily|hourly)-(?P<Date>[0-9]{4}-[0-9]{2}-[0-9]{2}_[0-9]{2}.[0-9]{2}.[0-9]{2})--([0-9]+[ymwdhMs]{1}|forever)$`)
for _, src := range a.Sources {
timeSource[string(src)] = make(map[time.Time]struct{})
2021-11-14 03:53:13 +01:00
for _, snap := range cfg.Box[src.Box()].ZFSGetSnapshotList() {
2021-10-16 15:39:54 +02:00
if src.Path() == snap.Path() {
if re.MatchString(snap.Name()) {
dateString := re.ReplaceAllString(snap.Name(), "${Date}")
dateTime, err := time.Parse("2006-01-02_15.04.05", dateString)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.needYearlySnapshot : %s : time.Parse(%s) : %s", a.Name, dateString, err)
}
} else {
timeSource[string(src)][dateTime] = struct{}{}
timeTotal[dateTime] = struct{}{}
}
}
}
}
}
// cleaning up the available timestamps for common timestamps
for t, _ := range timeTotal {
for _, v := range timeSource {
if _, ok := v[t]; !ok {
delete(timeTotal, t)
}
}
}
// finding an eligible timestamp
now := a.getTime()
for t, _ := range timeTotal {
if t.Year() == now.Year() && t.Month() == now.Month() && t.Day() == now.Day() && t.Hour() == now.Hour() {
return false
}
}
// no timestamp => need the snapshot !
return true
}
2021-10-18 16:13:04 +02:00
func (a AppConfig) CheckZFS() error {
2021-10-16 15:39:54 +02:00
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.CheckZFS : %s : Start", a.Name)
2021-10-16 15:39:54 +02:00
}
for _, src := range a.Sources {
2021-11-14 03:53:13 +01:00
if !cfg.Box[src.Box()].ZFSIsZFS(src.Path()) {
2021-10-16 15:39:54 +02:00
return fmt.Errorf("No path %s on source", string(src))
}
for _, dest := range a.Destinations {
2021-11-14 03:53:13 +01:00
if !cfg.Box[dest.Box()].ZFSIsZFS(dest.Path() + "/" + src.Box() + "/" + src.Path()) {
err := cfg.Box[dest.Box()].ZFSCreateZFS(dest.Path() + "/" + src.Box() + "/" + src.Path())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.CheckZFS : %s : Error creating %s on %s", a.Name, dest.Path()+"/"+src.Box()+"/"+src.Path(), dest.Box())
2021-10-16 15:39:54 +02:00
}
return err
}
}
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) ExecBefore(schedule string) error {
if *debugFlag {
log.Printf("AppConfig.ExecBefore : %s : Start %s", a.Name, schedule)
}
2021-10-16 15:39:54 +02:00
for k, v := range a.Before {
re := regexp.MustCompile(k)
if re.MatchString(schedule) {
2021-11-14 03:53:13 +01:00
err := cfg.Box[v.Box()].SSHExec(v.Path())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.ExecBefore : %s : Error executing %s", a.Name, string(v))
2021-10-16 15:39:54 +02:00
}
return err
}
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) ExecAfter(schedule string) error {
if *debugFlag {
log.Printf("AppConfig.ExecAfter : %s : Start %s", a.Name, schedule)
}
for k, v := range a.After {
re := regexp.MustCompile(k)
if re.MatchString(schedule) {
2021-11-14 03:53:13 +01:00
err := cfg.Box[v.Box()].SSHExec(v.Path())
2021-10-18 16:13:04 +02:00
if err != nil {
if *debugFlag {
log.Printf("AppConfig.ExecAfter : %s : Error executing %s on %s", a.Name, v.Path(), v.Box())
}
return err
}
}
}
return nil
}
func (a AppConfig) TakeSnapshot(schedule string) error {
if *debugFlag {
log.Printf("AppConfig.TakeSnapshot : %s : Start %s", a.Name, schedule)
}
2021-10-16 15:39:54 +02:00
takeSnapshot := make(map[string]string)
for _, v := range a.Sources {
takeSnapshot[v.Box()] = takeSnapshot[v.Box()] + " " + v.Path()
}
for k, v := range takeSnapshot {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.TakeSnapshot : %s : taking snapshot on %s for %s", a.Name, k, v)
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
err := cfg.Box[k].SSHExec("zfsnap snapshot -p " + schedule + "- -a " + cfg.Zfsnap[schedule] + v)
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.TakeSnapshot : %s : Error executing zfsnap on %s", a.Name, k)
2021-10-16 15:39:54 +02:00
}
return err
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) RefreshSnapshot() error {
if *debugFlag {
log.Printf("AppConfig.RefreshSnapshot : %s : Start", a.Name)
}
refreshSnapshot := make(map[string]struct{})
for _, v := range a.Sources {
refreshSnapshot[v.Box()] = struct{}{}
}
2021-10-16 15:39:54 +02:00
for _, v := range a.Destinations {
2021-10-18 16:13:04 +02:00
refreshSnapshot[v.Box()] = struct{}{}
2021-10-16 15:39:54 +02:00
}
for k, _ := range refreshSnapshot {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.RefreshSnapshot : %s : refreshing snapshots for source %s", a.Name, k)
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
err := cfg.Box[k].ZFSUpdateSnapshotList()
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.RefreshSnapshot : %s : Error getting snapshots on %s", a.Name, k)
2021-10-16 15:39:54 +02:00
}
return err
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) SendSnapshots() error {
if *debugFlag {
log.Printf("AppConfig.SendSnapshots : %s : Start", a.Name)
}
2021-10-16 15:39:54 +02:00
for _, src := range a.Sources {
for _, dest := range a.Destinations {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Sending snapshots from %s to %s", a.Name, string(src), string(dest))
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
dLastSnapshot, err := cfg.Box[dest.Box()].ZFSGetLastSnapshot(dest.Path() + "/" + src.Box() + "/" + src.Path())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : No snapshot for %s on %s", a.Name, string(src), dest.Box())
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
sFirstSnapshot, err := cfg.Box[src.Box()].ZFSGetFirstSnapshot(src.Path())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : No snapshot for %s", a.Name, string(src))
2021-10-16 15:39:54 +02:00
}
return err
}
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Initializing snapshot on %s from %s", a.Name, dest.Box(), string(sFirstSnapshot))
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
err = cfg.Box[dest.Box()].SSHExec("ssh " + cfg.Box[src.Box()].User + "@" + src.Box() + " zfs send " + string(sFirstSnapshot) + " | zfs recv -F " + dest.Path() + "/" + src.Box() + "/" + src.Path())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Initializing snapshot on %s from %s failed (%s)", a.Name, dest.Box(), string(sFirstSnapshot), err)
2021-10-16 15:39:54 +02:00
}
return err
}
var sCurrSnapshot Snapshot
sNextSnapshot := sFirstSnapshot
2021-11-14 03:53:13 +01:00
for !cfg.Box[src.Box()].ZFSIsLastSnapshot(sNextSnapshot) {
2021-10-16 15:39:54 +02:00
sCurrSnapshot = sNextSnapshot
2021-11-14 03:53:13 +01:00
sNextSnapshot, err = cfg.Box[src.Box()].ZFSGetNextSnapshot(sNextSnapshot)
2021-10-16 15:39:54 +02:00
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Sending incrementally %s to %s", a.Name, string(sNextSnapshot), dest.Box())
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
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())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Sending snapshot on %s from %s failed (%s)", a.Name, dest.Box(), string(sNextSnapshot), err)
2021-10-16 15:39:54 +02:00
}
return err
}
}
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : All snapshots sent for %s", a.Name, string(src))
2021-10-16 15:39:54 +02:00
}
} else {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Last snapshot on %s is %s", a.Name, dest.Box(), string(dLastSnapshot))
2021-10-16 15:39:54 +02:00
}
var sCurrSnapshot Snapshot
2021-10-18 16:37:43 +02:00
sNextSnapshot := Snapshot(string(dLastSnapshot)[len(dest.Path())+len(src.Box())+2:])
2021-11-14 03:53:13 +01:00
for !cfg.Box[src.Box()].ZFSIsLastSnapshot(sNextSnapshot) {
2021-10-16 15:39:54 +02:00
sCurrSnapshot = sNextSnapshot
2021-11-14 03:53:13 +01:00
sNextSnapshot, err = cfg.Box[src.Box()].ZFSGetNextSnapshot(sNextSnapshot)
2021-10-16 15:39:54 +02:00
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Sending incrementally %s to %s", a.Name, string(sNextSnapshot), dest.Box())
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
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())
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.SendSnapshots : %s : Sending snapshot on %s from %s failed (%s)", a.Name, dest.Box(), string(sNextSnapshot), err)
2021-10-16 15:39:54 +02:00
}
return err
}
}
}
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) CleanupSnapshot() error {
if *debugFlag {
2021-10-18 16:20:44 +02:00
log.Printf("AppConfig.CleanupSnapshot : %s : Start", a.Name)
2021-10-18 16:13:04 +02:00
}
cleanupSnapshot := make(map[string]string)
for _, dest := range a.Destinations {
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 {
2021-10-16 15:39:54 +02:00
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.CleanupSnapshot : %s : cleaning snapshots on %s for%s", a.Name, k, v)
2021-10-16 15:39:54 +02:00
}
2021-11-14 03:53:13 +01:00
err := cfg.Box[k].SSHExec("zfsnap destroy -p hourly- -p daily- -p weekly- -p monthly- -p yearly-" + v)
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.CleanupSnapshot : %s : Error executing zfsnap on %s", a.Name, k)
2021-10-16 15:39:54 +02:00
}
return err
}
}
2021-10-18 16:13:04 +02:00
return nil
}
func (a AppConfig) RunAppBackup() error {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : Start", a.Name)
}
schedule, err := a.getSchedule()
if err != nil {
2021-10-16 15:39:54 +02:00
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.RunAppBackup : %s : Error getting schedule : %s", a.Name, err)
2021-10-16 15:39:54 +02:00
}
2021-10-18 16:13:04 +02:00
return err
}
2021-11-04 14:33:44 +01:00
if schedule != "" || *slowFlag {
2021-10-18 16:13:04 +02:00
err = a.CheckZFS()
2021-10-16 15:39:54 +02:00
if err != nil {
if *debugFlag {
2021-10-18 16:13:04 +02:00
log.Printf("AppConfig.RunAppBackup : %s : CheckZFS : %s", a.Name, err)
}
return err
}
2021-11-04 14:33:44 +01:00
}
2021-10-18 16:13:04 +02:00
2021-11-04 14:33:44 +01:00
if schedule != "" {
2021-10-18 16:13:04 +02:00
err = a.ExecBefore(schedule)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : ExecBefore : %s", a.Name, err)
2021-10-16 15:39:54 +02:00
}
return err
}
2021-10-19 02:45:51 +02:00
err = a.TakeSnapshot(schedule)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : TakeSnapshot : %s", a.Name, err)
}
return err
}
2021-10-16 15:39:54 +02:00
}
2021-10-18 16:13:04 +02:00
err = a.RefreshSnapshot()
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : RefreshSnapshot : %s", a.Name, err)
}
return err
}
err = a.SendSnapshots()
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : SendSnapshots : %s", a.Name, err)
}
return err
}
if schedule != "" {
err = a.ExecAfter(schedule)
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : ExecAfter : %s", a.Name, err)
2021-10-16 15:39:54 +02:00
}
2021-10-18 16:13:04 +02:00
return err
2021-10-16 15:39:54 +02:00
}
}
2021-10-18 16:13:04 +02:00
err = a.CleanupSnapshot()
if err != nil {
if *debugFlag {
log.Printf("AppConfig.RunAppBackup : %s : RefreshSnapshot : %s", a.Name, err)
}
return err
}
2021-10-16 15:39:54 +02:00
return nil
}