forked from TrueCloudLab/restic
Merge pull request #1164 from ricardoseriani/fix-key-remove-command
Change key rm command to key remove
This commit is contained in:
commit
af9946b098
3 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@ import (
|
|||
)
|
||||
|
||||
var cmdKey = &cobra.Command{
|
||||
Use: "key [list|add|rm|passwd] [ID]",
|
||||
Use: "key [list|add|remove|passwd] [ID]",
|
||||
Short: "manage keys (passwords)",
|
||||
Long: `
|
||||
The "key" command manages keys (passwords) for accessing the repository.
|
||||
|
@ -124,7 +124,7 @@ func changePassword(gopts GlobalOptions, repo *repository.Repository) error {
|
|||
}
|
||||
|
||||
func runKey(gopts GlobalOptions, args []string) error {
|
||||
if len(args) < 1 || (args[0] == "rm" && len(args) != 2) || (args[0] != "rm" && len(args) != 1) {
|
||||
if len(args) < 1 || (args[0] == "remove" && len(args) != 2) || (args[0] != "remove" && len(args) != 1) {
|
||||
return errors.Fatal("wrong number of arguments")
|
||||
}
|
||||
|
||||
|
@ -153,7 +153,7 @@ func runKey(gopts GlobalOptions, args []string) error {
|
|||
}
|
||||
|
||||
return addKey(gopts, repo)
|
||||
case "rm":
|
||||
case "remove":
|
||||
lock, err := lockRepoExclusive(repo)
|
||||
defer unlockRepo(lock)
|
||||
if err != nil {
|
||||
|
|
|
@ -786,7 +786,7 @@ func testRunKeyPasswd(t testing.TB, newPassword string, gopts GlobalOptions) {
|
|||
func testRunKeyRemove(t testing.TB, gopts GlobalOptions, IDs []string) {
|
||||
t.Logf("remove %d keys: %q\n", len(IDs), IDs)
|
||||
for _, id := range IDs {
|
||||
OK(t, runKey(gopts, []string{"rm", id}))
|
||||
OK(t, runKey(gopts, []string{"remove", id}))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ restic\-key \- manage keys (passwords)
|
|||
|
||||
.SH SYNOPSIS
|
||||
.PP
|
||||
\fBrestic key [list|add|rm|passwd] [ID] [flags]\fP
|
||||
\fBrestic key [list|add|remove|passwd] [ID] [flags]\fP
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
|
|
Loading…
Reference in a new issue