This is good news to me at least. While I don’t expect the $30 bottles of Elmer T Lee, imo won’t lament any decrease in prices for these artificially inflated bottles. They were never that good.
When has this never been the case?
# rotate daily backups
ssh -i $SSHKEY -q $BACKUPHOST rm -rf $BASEDIR/home.3
ssh -i $SSHKEY -q $BACKUPHOST mv $BASEDIR/home.2 $BASEDIR/home.3
ssh -i $SSHKEY -q $BACKUPHOST mv $BASEDIR/home.1 $BASEDIR/home.2
ssh -i $SSHKEY -q $BACKUPHOST \
"(cd $BASEDIR/home.0 && find . -print | cpio -dplm $BASEDIR/home.1)"
# backup
TMPFILE=`mktemp /tmp/excludeXXXXXXXX`
cat << EOF > $TMPFILE
quota.user
.cache
EOF
rsync -Lazv -e "ssh -i $SSHKEY" --update --delete \
--exclude-from=$TMPFILE $HOME $BACKUPHOST:$BASEDIR/home.0
rm $TMPFILE