mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 08:16:25 +00:00
23 lines
358 B
Go
23 lines
358 B
Go
package internal
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
func RunCron() error {
|
|
c := GetConfig()
|
|
var errs []error
|
|
for name, l := range c.Locations {
|
|
l.name = name
|
|
if err := l.RunCron(); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
}
|
|
|
|
if len(errs) > 0 {
|
|
return fmt.Errorf("Encountered errors during cron process:\n%w", errors.Join(errs...))
|
|
}
|
|
return nil
|
|
}
|