mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
[issue 3464] skip lock creation in case of dry-run
This commit is contained in:
parent
2ff3b7d69c
commit
792523b28b
9
changelog/unreleased/issue-3464
Normal file
9
changelog/unreleased/issue-3464
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Enhancement: Skip lock creation on forget if --no-lock and --dry-run
|
||||||
|
|
||||||
|
Restic used to silently ignore --no-lock option of forget. It now skips
|
||||||
|
creation of lock file in case of both --dry-run and --no-lock are specified. If
|
||||||
|
--no-lock option is specified without --dry-run then restic prints a warning
|
||||||
|
message to stderr.
|
||||||
|
|
||||||
|
https://github.com/restic/restic/issues/3464
|
||||||
|
https://github.com/restic/restic/pull/3623
|
@ -5,6 +5,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
|
"github.com/restic/restic/internal/errors"
|
||||||
"github.com/restic/restic/internal/restic"
|
"github.com/restic/restic/internal/restic"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
@ -108,11 +109,17 @@ func runForget(opts ForgetOptions, gopts GlobalOptions, args []string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if gopts.NoLock && !opts.DryRun {
|
||||||
|
return errors.Fatal("--no-lock is only applicable in combination with --dry-run for forget command")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !opts.DryRun || !gopts.NoLock {
|
||||||
lock, err := lockRepoExclusive(gopts.ctx, repo)
|
lock, err := lockRepoExclusive(gopts.ctx, repo)
|
||||||
defer unlockRepo(lock)
|
defer unlockRepo(lock)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(gopts.ctx)
|
ctx, cancel := context.WithCancel(gopts.ctx)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
Loading…
Reference in New Issue
Block a user