mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 08:16:25 +00:00
cron job
This commit is contained in:
parent
03ca0c8677
commit
d293e93fa8
@ -3,8 +3,7 @@ package internal
|
||||
func RunCron() error {
|
||||
c := GetConfig()
|
||||
for _, l := range c.Locations {
|
||||
err := l.RunCron()
|
||||
if err != nil {
|
||||
if err := l.RunCron(); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
@ -207,16 +207,14 @@ func (l Location) RunCron() error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
last := lock.GetCron("test")
|
||||
fmt.Println(last)
|
||||
next := schedule.Next(time.Unix(last, 0))
|
||||
fmt.Println(next)
|
||||
last := time.Unix(lock.GetCron(l.Name), 0)
|
||||
next := schedule.Next(last)
|
||||
now := time.Now()
|
||||
if now.After(next) {
|
||||
fmt.Println("Running")
|
||||
lock.SetCron("test", now.Unix())
|
||||
lock.SetCron(l.Name, now.Unix())
|
||||
l.Backup()
|
||||
} else {
|
||||
fmt.Println("Not due yet")
|
||||
fmt.Printf("Skipping \"%s\", not due yet.\n", l.Name)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user