Let's say I have to push a change live at 8 AM EST on Tuesday May 18th - this change is across various files:
- xml file
- php file
- 30x static html files with no php processing enabled
all of these are hosted on a linux server with cron.
Is it reliable setting up a cron job to call a script which takes these files, for example:
- templates/template.php
- navigation.xml
- specials-hot-deal.html
and appends '-old' to those, along with renaming the live files I'll have on the server "template-new.php", "navigation-new.xml" at that approximate time?
Is this reliable or should I just manually do this? Of course since I'm not familiar with cron I'll probably have to test it out today. Any weird cron gotchas I should know about?