|
It depends on what you use your "primary" Linode for. If it's so NOT mission-critical that you can afford a few hours of downtime while you start from scratch and re-upload your 1-day-old backup, by all means dump the backup and save your money. If not, maybe it's worth the extra $20.
DNS changes don't necessarily take long. You could use short TTL values. You could convert as many subdomains as possible to CNAME records, so you only need to change one A entry and everything else just follows. If you manage multiple domains, you can automate the task with the Linode API. Or even better, you can simply switch IP addresses between the broken linode and the new one.
If you want to do the start-from-scratch route, consider my example: I keep a list of every package I installed and every configuration file I customized. I feed it into a home-brewed bash script, along with the firewall entries and the exact rsync command to restore my data from the backup. When I provision a new server, I just upload and run the bash script. 5 minutes + the time it takes to restore the backup, and it's ready.
|