mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
s3: don't remove the bucket on Delete()
This commit is contained in:
parent
55f10eb1c1
commit
248f991ad4
@ -240,7 +240,7 @@ func (be *S3Backend) removeKeys(t backend.Type) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Delete removes all restic keys and the bucket.
|
||||
// Delete removes all restic keys in the bucket. It will not remove the bucket itself.
|
||||
func (be *S3Backend) Delete() error {
|
||||
alltypes := []backend.Type{
|
||||
backend.Data,
|
||||
@ -256,12 +256,7 @@ func (be *S3Backend) Delete() error {
|
||||
}
|
||||
}
|
||||
|
||||
err := be.Remove(backend.Config, "")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return be.s3api.RemoveBucket(be.bucketname)
|
||||
return be.Remove(backend.Config, "")
|
||||
}
|
||||
|
||||
// Close does nothing
|
||||
|
Loading…
Reference in New Issue
Block a user