Hey Brock, thanks so much - that was very helpful! I would like to note that the "mass deleting script" needed some little changes to work for me. Here is what worked:
for x in $(cat /your/path/listofvolumefiles.txt) do echo purge volume=$x | bconsole echo delete volume=$x yes | bconsole rm -f /your/path/$x done Many greets Stephan IT-Abteilung Rinklin Naturkost GmbH Bruckmatten 14-18 79356 Eichstetten am Kaiserstuhl Telefon +49 7663 9394-448 [email protected] www.rinklin-naturkost.de --------------------------------------------------------------------------------------------------------- Geschäftsführer: Armin Rinklin, Harald Rinklin, Jochen Rinklin, Wilhelm Rinklin Registergericht Freiburg HRB 3567 - USt-ID: DE142213751 - DE ÖKO-001 -----Ursprüngliche Nachricht----- Von: Brock Palen [mailto:[email protected]] Gesendet: Dienstag, 7. Dezember 2021 14:51 An: Stephan Hermann-Strauß <[email protected]> Cc: [email protected] Betreff: Re: [bareos-users] delete Volumes If they are tape volumes you want to recycle, you can just use the purge command. If they are disk volumes you want to go away bareos won’t delete them, So I would do purge volume=<volumename> delete volume=<volumename> rm -f /mnt/baroes/<volumename> # update for location of volumes The purge/delete is important so that baroes don’t think files exist for backup jobs. If you have a list of volumes in a file you can do: for x in $(cat /tmp/volumes) do echo “purge volume=$x” | bconsole echo “delete volume=$x” | bconsole rm -f /mnt/baroes/$x done Brock Palen [email protected] www.mlds-networks.com Websites, Linux, Hosting, Joomla, Consulting > On Dec 7, 2021, at 4:24 AM, Stephan Hermann-Strauß > <[email protected]> wrote: > > Hi there, > > we just reorganized our volumes/devices/storages/pools design. As a result > there are volumes we do not need anymore. What is the safe way to get rid of > these volumes and all the backups within? > > Thanks and greets > Stephan > > > > -- > You received this message because you are subscribed to the Google Groups > "bareos-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/bareos-users/0cfe4f9afe164702859b6a19455e16a7%40srvmail2.bruckmatten.rinklin-naturkost.de. -- You received this message because you are subscribed to the Google Groups "bareos-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/bareos-users/f17e851bf74c4070b0ecdb1485e831df%40srvmail2.bruckmatten.rinklin-naturkost.de.
