2010-05-11 15:01:29 +02:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
2010-05-11 22:25:27 +02:00
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
2010-05-11 15:01:29 +02:00
|
|
|
# If there's no config file by that name, mv it over:
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
2010-05-11 22:25:27 +02:00
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
2010-05-11 15:01:29 +02:00
|
|
|
# toss the redundant copy
|
|
|
|
rm $NEW
|
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
2010-05-11 22:25:27 +02:00
|
|
|
|
|
|
|
config etc/kazehakase/bookmarkbar.xml.new
|
|
|
|
config etc/kazehakase/bookmarks.xml.new
|
|
|
|
config etc/kazehakase/kz-ui-beginner.xml.new
|
|
|
|
config etc/kazehakase/kz-ui-medium.xml.new
|
|
|
|
config etc/kazehakase/kz-ui-expert.xml.new
|
|
|
|
config etc/kazehakase/kz-ui-bookmarks.xml.new
|
2010-05-11 15:01:29 +02:00
|
|
|
config etc/kazehakase/kzrc.new
|
|
|
|
config etc/kazehakase/proxyrc.new
|
2010-05-11 22:25:27 +02:00
|
|
|
config etc/kazehakase/smartbookmarks.xml.new
|
|
|
|
config etc/kazehakase/mozilla/encodings.xml.new
|
2010-05-11 15:01:29 +02:00
|
|
|
|
2010-05-11 22:25:27 +02:00
|
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
|
|
/usr/bin/update-desktop-database -q usr/share/applications
|
2010-05-11 15:01:29 +02:00
|
|
|
fi
|