slackbuilds_ponce/network/dillo/doinst.sh

22 lines
564 B
Bash
Raw Normal View History

2010-05-11 15:01:26 +02:00
config() {
NEW="$1"
2010-05-13 00:36:10 +02:00
OLD="$(dirname $NEW)/$(basename $NEW .new)"
2010-05-11 15:01:26 +02:00
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
2010-05-13 00:36:10 +02:00
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
2010-05-11 15:01:26 +02:00
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
2010-05-13 00:36:10 +02:00
config etc/dillo/dillorc.new
config etc/dillo/dpidrc.new
config etc/dillo/keysrc.new
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi