slackbuilds_ponce/libraries/GConf/doinst.sh
Robby Workman dec3bd3961 libraries/GConf: Create the gio module cache during postinstall
Thanks to disturbed1 on LQ for the tip.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2011-11-06 22:13:07 -06:00

18 lines
495 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/gconf/2/path.new
config etc/gconf/2/evoldap.conf.new
chroot . /usr/bin/gio-querymodules @LIBDIR@/gio/modules/ 1>/dev/null 2>/dev/null