From: "Fabian Grünbichler" <f.gruenbichler@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>
Subject: [pve-devel] applied-series: [PATCH-SERIES v2 manager/storage] fix #3307: allow backups to be marked as protected
Date: Tue, 09 Nov 2021 17:51:03 +0100 [thread overview]
Message-ID: <1636476643.7f37y3wzgx.astroid@nora.none> (raw)
In-Reply-To: <20210930114215.240095-1-f.ebner@proxmox.com>
On September 30, 2021 1:42 pm, Fabian Ebner wrote:
> Protected bacukps cannot be removed accidentally and will be ignored
> for pruning. A <backup>.protected file serves as a protection marker
> for file-based storages.
>
>
> Changes from v1:
> * Avoid races when using unlink.
> * Also add fall-back for {get, update}_volume_notes to other
> plugin implementations, because external plugins might be
> derived from those too.
> * Add UI integration patches.
>
>
> For the storage part, an APIAGE+APIVER bump is needed.
> Dependency bump from pve-manager to pve-storage is needed.
>
>
> To work, the PBS integration needs Dominik's patches for PBS (seems
> like a rebase is needed for those, I tested on top of v2.0.10):
> https://lists.proxmox.com/pipermail/pbs-devel/2021-September/004099.html
>
>
> pve-storage:
>
> Fabian Ebner (7):
> dir plugin: update notes: don't fail if file is already removed
> dir plugin: get notes: return undef if notes are not supported
> add generalized functions to manage volume attributes
> prune mark: preserve additional information for the keep-all case
> fix #3307: make it possible to set protection for backups
> prune: mark renamed and protected backups differently
> pbs: integrate support for protected
>
> PVE/API2/Storage/Content.pm | 36 ++++++++++---
> PVE/API2/Storage/PruneBackups.pm | 5 +-
> PVE/Storage.pm | 23 +++++---
> PVE/Storage/BTRFSPlugin.pm | 4 +-
> PVE/Storage/CIFSPlugin.pm | 13 +++++
> PVE/Storage/CephFSPlugin.pm | 12 +++++
> PVE/Storage/DirPlugin.pm | 62 +++++++++++++++++++++-
> PVE/Storage/NFSPlugin.pm | 13 +++++
> PVE/Storage/PBSPlugin.pm | 90 +++++++++++++++++++++++++++++++-
> PVE/Storage/Plugin.pm | 45 +++++++++++++++-
> test/prune_backups_test.pm | 17 +++++-
> 11 files changed, 296 insertions(+), 24 deletions(-)
>
>
> pve-manager:
>
> Fabian Ebner (5):
> vzdump: skip protected backups for dumpdir pruning
> ui: storage content: avoid redundant options hasNotesColumn and
> hideColumns
> ui: backup views: add protected column
> ui: backup views: add button to change protection status
> ui: prune: also handle new 'renamed' keep reason
>
> PVE/VZDump.pm | 7 +++++++
> www/manager6/grid/BackupView.js | 25 +++++++++++++++++++++++++
> www/manager6/storage/BackupView.js | 18 ++++++++++++++++++
> www/manager6/storage/Browser.js | 1 -
> www/manager6/storage/ContentView.js | 20 ++++++++++++++------
> www/manager6/window/Prune.js | 2 ++
> 6 files changed, 66 insertions(+), 7 deletions(-)
>
> --
> 2.30.2
>
>
>
> _______________________________________________
> pve-devel mailing list
> pve-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
>
>
>
prev parent reply other threads:[~2021-11-09 16:51 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-30 11:42 [pve-devel] " Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 1/7] dir plugin: update notes: don't fail if file is already removed Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 2/7] dir plugin: get notes: return undef if notes are not supported Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 3/7] add generalized functions to manage volume attributes Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 4/7] prune mark: preserve additional information for the keep-all case Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 5/7] fix #3307: make it possible to set protection for backups Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 6/7] prune: mark renamed and protected backups differently Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 storage 7/7] pbs: integrate support for protected Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 manager 1/5] vzdump: skip protected backups for dumpdir pruning Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 manager 2/5] ui: storage content: avoid redundant options hasNotesColumn and hideColumns Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 manager 3/5] ui: backup views: add protected column Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 manager 4/5] ui: backup views: add button to change protection status Fabian Ebner
2021-09-30 11:42 ` [pve-devel] [PATCH v2 manager 5/5] ui: prune: also handle new 'renamed' keep reason Fabian Ebner
2021-11-09 16:51 ` Fabian Grünbichler [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1636476643.7f37y3wzgx.astroid@nora.none \
--to=f.gruenbichler@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.