jquery / infrastructure-puppet

Puppet configuration for jQuery Infrastructure servers.
MIT License
6 stars 9 forks source link

Document machine deletion process for tarsnap backups #19

Closed Krinkle closed 8 months ago

Krinkle commented 10 months ago

TODO at https://github.com/jquery/infrastructure-puppet/blob/staging/doc/backup.md

Krinkle commented 10 months ago

As part of https://github.com/jquery/infrastructure-puppet/issues/12, I did the following for cla-01.ops.jquery.net:

$ sudo tarsnap --list-archives
2023-07-01-040001-monthly-cla-output
…
…
…

Then pass each to sudo tarsnap -d -f <name> like sudo tarsnap -d -f 2023-07-01-040001-monthly-cla-output.

Or to delete them all:

sudo tarsnap --list-archives | xargs -P 1 -n1 sudo tarsnap -d -f
Krinkle commented 8 months ago