mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
32 lines
665 B
Go
32 lines
665 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/cupcakearmy/autorestic/internal"
|
|
"github.com/cupcakearmy/autorestic/internal/lock"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var backupCmd = &cobra.Command{
|
|
Use: "backup",
|
|
Short: "Create backups for given locations",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
err := lock.Lock()
|
|
CheckErr(err)
|
|
defer lock.Unlock()
|
|
|
|
CheckErr(internal.CheckConfig())
|
|
|
|
selected, err := internal.GetAllOrSelected(cmd, false)
|
|
CheckErr(err)
|
|
for _, name := range selected {
|
|
location, _ := internal.GetLocation(name)
|
|
location.Backup()
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(backupCmd)
|
|
internal.AddFlagsToCommand(backupCmd, false)
|
|
}
|