I used easy version control to return to 5.8.1 from 5.8.2.
At the boot of 5.8.1, quicksetup is launched. Fr stayed the default but the icons on the desktop are now in English (even after reboot)
All my customizations of the desktop are lost.
Firefox started but all the settings and cache have dissappeared.
Many files and settings are disappeared.
I opened the old snapshots . There is no r/oot directory in them.
Test of creation of a snapshot in the old installed 5.8.1
The file with the list of excluded files (/tmp/snapshot-exclusions1):
dev
mnt
proc
run
sys
tmp
var
.fsckme.flg
lost+found
root/.XLOADED
.control
home
firefox
.cache
root
.cache
root and firefox are on the list
lines 403 to 408 from /usr/local/easy_version/easy-version-control :
Code: Select all
#20221015 get rid of .cache folders...
DOTC="$(find /mnt/${WKG_DEV}/${WKG_DIR}.session -maxdepth 3 -type d -name '.cache' | cut -f 6- -d '/' | tr '/n' ' ')" #ex: home/firefox/.cache
for aDOTC in $DOTC
do
echo "$aDOTC" >> /tmp/easy_version_control/snapshot-exclusions1
done
After initialization of WKG_DEV and WKG_DIR
# find /mnt/${WKG_DEV}/${WKG_DIR}.session -maxdepth 3 -type d -name '.cache' | cut -f 6- -d '/' | tr '/n' ' '
home firefox .cache
root .cache
and
# find /mnt/${WKG_DEV}/${WKG_DIR}.session -maxdepth 3 -type d -name '.cache' | cut -f 6- -d '/'
home/firefox/.cache
root/.cache
(Edit : correction of a typo)