Excerpts from muiru james's message of 2020-12-05 13:10:56 +0300: > I have my Koha instance backing up automatically to dropbox through a bash > script. I need to automatically delete archives older than 5 days. How do I > do it?
If you're using rsync to send the backups from your Koha server to dropbox, you can use the --delete option. That will delete files on dropbox that are not present on the Koha server. I don't use use dropbox, but I do something like this to copy backups to my home machine: rsync -av --delete [email protected]:/var/spool/koha/INSTANCENAME/ koha-backups -- Let's organize this thing and take all the fun out of it. --Ashleigh Brilliant _______________________________________________ Koha mailing list http://koha-community.org [email protected] Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

