Wie lösche ich den ältesten BTRFS-Snapshot automatisch?

Wie lösche ich den ältesten BTRFS-Snapshot automatisch?

Es erscheint mir seltsam, dass es kein einfaches Skript gibt, das die ältesten BTRFS-Snapshots löscht, nachdem das Festplattenkontingent erreicht ist. Es war Teil der BTRFS-Toolfamilie, ist es aber nicht mehr.

Da ich kein besonders guter Bash-Programmierer bin – weiß jemand, wie man den freien Speicherplatz überprüft und, wenn er einen bestimmten Schwellenwert erreicht, den ältesten BTRFS-Snapshot findet und löscht? Vielen Dank!

Antwort1

OK, keine Antwort, also hoffe ich, dass meine eigene Lösung hilft:

#!/bin/bash

value=80  #Disk % threshold  - if disk full above, then oldest snapshots will be deleted until disk is below threshold

for i in 1 2 3 4 5 6 7 8 9
do
  echo Attempt: $i of 9
  echo Getting snapshot list...
  to=$(sudo btrfs subvol list /mnt/timeshift/backup/timeshift-btrfs/snapshots)
  search="snapshots"
  prefix=${to%%$search*}
  position=$(awk -v a="$to" -v b=$search 'BEGIN{print index(a,b)}')
  fn=$(echo $to | cut -c $(($position+10))-$(($position+28)))
  echo Oldest snapshot name: $fn 

  diskfull=$(df -hP / | awk '{print $5}' |tail -1|sed 's/%$//g')
  if [ $value -gt $diskfull ]; then
    echo Threshold $value% greater than Used disk $diskfull%
    echo should not delete any more snapshots
    echo Creating one more snapshot
    sudo timeshift --create --comments "automatic"
    exit 1
  else
    echo Threshold $value% is less than Used disk $diskfull%
    echo Deleting snapshot $fn...
    sudo timeshift --delete --snapshot "$fn"
    echo Waiting for changes to be written...
    sudo btrfs subvolume sync /
    echo Checking if disk space resolved...
    fi
done

verwandte Informationen