mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 08:16:25 +00:00
restore arg help
This commit is contained in:
parent
ac756dfbde
commit
2c46f0da0c
@ -9,8 +9,9 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var restoreCmd = &cobra.Command{
|
var restoreCmd = &cobra.Command{
|
||||||
Use: "restore",
|
Use: "restore [snapshot id]",
|
||||||
Short: "Restore backup for location",
|
Short: "Restore backup for location",
|
||||||
|
Args: cobra.MaximumNArgs(1),
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
err := lock.Lock()
|
err := lock.Lock()
|
||||||
CheckErr(err)
|
CheckErr(err)
|
||||||
@ -24,7 +25,11 @@ var restoreCmd = &cobra.Command{
|
|||||||
target, _ := cmd.Flags().GetString("to")
|
target, _ := cmd.Flags().GetString("to")
|
||||||
from, _ := cmd.Flags().GetString("from")
|
from, _ := cmd.Flags().GetString("from")
|
||||||
force, _ := cmd.Flags().GetBool("force")
|
force, _ := cmd.Flags().GetBool("force")
|
||||||
err = l.Restore(target, from, force)
|
snapshot := ""
|
||||||
|
if len(args) > 0 {
|
||||||
|
snapshot = args[0]
|
||||||
|
}
|
||||||
|
err = l.Restore(target, from, force, snapshot)
|
||||||
CheckErr(err)
|
CheckErr(err)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user