Is there a way to make a backup of package that will be change while yum update? For example when I do yum update lighttpd is there a way to backup and restore lighttpd if yum update will be unsuccessful or it will result in unsuspected errors or bugs?
feedback
|
|
If you're using RPM before 4.6.0 (it's removed in newer versions), you can use You can have a manual solution, keeping a list of all the packages before the yum update and reinstall needed old rpms possibly using --oldpackage like To get a list of all installed packages, sorted by installation time:
(Source) If you're using Fedora, here is an official guide to upgrade the system using the installer with an example of how to create a list of system current installed packages and how to restore most of old software after an upgrade. If you want a generic approach to get a list of installed software (not only rpm based), you can follow this article as well. | |||
|
feedback
|
|
If you are using a repo. that keeps all old versions around, you can just do "yum downgrade lighttpd" (and with newer yum's "yum history undo"). If you aren't, then you can keep a local copy of the old rpm and use "yum downgrade lighttpd*.rpm" (although that is trickier). It's possible that some problems won't be fixed by this, but those should be very rare and downgrade is unlikely to change anything else as a side effect. Very recently a plugin "yum-plugin-fs-snapshot" has been created, which will automatically take an FS snapshot (btrfs, or LVM) before doing an upgrade ... thus. you can then just rollback to the snapshot. This is a big change though, so I don't recommend it. | |||
|
feedback
|
|
I use etckeeper to track changes of files under If something bad happens during an upgrade or so, I can rollback anything. | |||
|
feedback
|