diff --git a/.local/bin/homesync b/.local/bin/homesync index 9541b4d7..ee81920a 100755 --- a/.local/bin/homesync +++ b/.local/bin/homesync @@ -58,27 +58,6 @@ message() { echo -e "$YELLOW:: $@$NORMAL" } -section Snapshot subvolumes if older then 1 day -while IFS= read -r fs; do - for subvol in private public; do - last=$(ls -1 .snapshots/"$subvol" | tail -1 | sed 's/_/ /') - if [ -z "$last" ]; then - continue - fi - last_date=$(date --date="$last" +%s) - now=$(date +%s) - if [ $(($now - $last_date)) -gt 86400 ]; then - message "Snapshot $fs/$subvol" - btrfs-snap "$fs/$subvol" - fi - unset now - unset last_date - unset last - done -done <