On regular Fedora, after a major upgrade there is an optional step to update system configuration files. What what I know of Bluefin the “/etc” directory is still fairly mutable. So should we also be doing this step after Bluefin upgrades?
Most configuration files are stored in the /etc folder. If you have changed the package’s configuration files, RPM creates new files with either .rpmnew (the new default config file), or .rpmsave (your old config file backed up). You can search for these files, or use the rpmconf tool that simplifies this process.
Yup, as Jorge said, you really dont need to do any of that, but the system will not tell you that something is different than the image default. You can check this by using ujust check-local-overrides and checking your files on etc.
As you can see, there is now an option provided that it won’t check on metered connections.
So in my case it will always default to the default network_not_metered of the application because it can’t read the value in my config file. So it can be useful to check your modified config files from time to time.
This command can help you with that
sudo ostree admin config-diff
.....
M ublue-update/ublue-update.toml
......
You ofcourse see alot of other files that are modified, but not by you intentionally. But I think this file was a great example to show.
This link below gives you a little more information, it tells you about the config file part.
Nice, all this in a just command, I’ve learned a new one today. Thanks!