In case anyone is interested in my /var/lib/dpkg/info/galeon-common.postins i.e. where the apparent segfault appears i.e. /var/lib/dpkg/info/galeon-common.postinst: line 47: 23006 Segmentation fault scrollkeeper-update -q
it is as follows:
#! /bin/sh
# postinst script for galeon
#
# Stolen completely from konqueror postinst, which was...
# Mostly stolen from the Debian xdm scripts
# Copyright 1998, 1999 Branden Robinson. Licensed under the GNU GPL.
# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava.
set -e
case "$1" in
configure|abort-upgrade)
if [ -e /etc/gconf/schemas/galeon.schemas ]; then
GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \
gconftool-2 --makefile-install-rule /etc/gconf/schemas/galeon.schemas > /dev/null
fi
# update alternatives for x-www-browser
update-alternatives --install /usr/bin/x-www-browser \
x-www-browser /usr/bin/galeon 120 \
--slave /usr/share/man/man1/x-www-browser.1.gz \
x-www-browser.1.gz /usr/share/man/man1/galeon.1.gz
;;
abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# Make sure, gconf permissions are correct
galeon-config-tool --fix-gconf-permissions
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
# Automatically added by dh_installmime
if [ "$1" = "configure" ] && [ -x /usr/sbin/update-mime ]; then update-mime; fi
# End automatically added section
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x /usr/bin/update-menus ]; then update-menus ; fi
# End automatically added section
# Automatically added by dh_scrollkeeper
if [ "$1" = "configure" ] && which scrollkeeper-update >/dev/null 2>&1; then
scrollkeeper-update -q
fi
# End automatically added section
# Automatically added by dh_gconf
if [ "$1" = "configure" ]; then
SCHEMA_LOCATION=/usr/share/gconf/schemas
SCHEMA_FILES="galeon.schemas "
for SCHEMA in $SCHEMA_FILES; do
if [ -e $SCHEMA_LOCATION/$SCHEMA ]; then
HOME=/root GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \
gconftool-2 \
--makefile-install-rule $SCHEMA_LOCATION/$SCHEMA > /dev/null
fi
done
kill -s HUP `pidof gconfd-2` >/dev/null 2>&1 || true
fi
# End automatically added section
Any help, any help at all will be deeply appreciated. I really need to get apt-get working again PLEASE! anyone?
