2018-04-15 19:35:48 +02:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
|
|
|
rm $NEW
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-11-30 17:44:09 +01:00
|
|
|
config etc/slpkg/slpkg.toml.new
|
2023-03-29 13:51:44 +02:00
|
|
|
config etc/slpkg/repositories.toml.new
|
2022-11-30 17:44:09 +01:00
|
|
|
config etc/slpkg/blacklist.toml.new
|
2018-04-15 19:35:48 +02:00
|
|
|
|
|
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
|
|
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
2022-06-17 16:39:33 +02:00
|
|
|
fi
|