mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 16:26:25 +00:00
8de8d0070e
In a future commit, I'll need the lockfile code to access the config file. This solves an import cycle.
28 lines
734 B
Go
28 lines
734 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/cupcakearmy/autorestic/internal"
|
|
"github.com/cupcakearmy/autorestic/internal/flags"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var cronCmd = &cobra.Command{
|
|
Use: "cron",
|
|
Short: "Run cron job for automated backups",
|
|
Long: `Intended to be mainly triggered by an automated system like systemd or crontab. For each location checks if a cron backup is due and runs it.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
internal.GetConfig()
|
|
err := internal.Lock()
|
|
CheckErr(err)
|
|
defer internal.Unlock()
|
|
|
|
err = internal.RunCron()
|
|
CheckErr(err)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(cronCmd)
|
|
cronCmd.Flags().BoolVar(&flags.CRON_LEAN, "lean", false, "only output information about actual backups")
|
|
}
|