F5 Automated Backups - The Right Way
Hi all,
Often I've been scouring the devcentral fora and codeshares to find that one piece of handywork that will drastically simplify my automated backup needs on F5 devices. Based on the wo...
Published Mar 13, 2014
Version 1.0Thomas_Schocka1
Altocumulus
Joined May 04, 2012
Thomas_Schocka1
Altocumulus
Joined May 04, 2012
DTC_Manager_325
Jul 17, 2017Nimbostratus
Hi, I have the same problem than Sylvain Q. Does someone else have the same problem? To workaround this issue I put the following lines to the crontab:
0 * * * * find /var/local/ucs/*.ucs -type f -cmin +120 -delete >/dev/null 2>&1
0 * * * * find /var/local/scf/*.scf -type f -cmin +120 -delete >/dev/null 2>&1
In my case, I perform a backup each hour to an external FTP server. Then, I remove the temporary files older than 2 hours.
Do you have a better idea/solution ?