Package gnome-mud: Scripts

Post install

export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source)
gconftool-2 --makefile-install-rule /etc/gconf/schemas/gnome-mud.schemas > /dev/null
Pre install

1
2
3
4
5
if [ "$1" -gt 1 ] ; then
	export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source)
	gconftool-2 --makefile-uninstall-rule \
	/etc/gconf/schemas/gnome-mud.schemas >/dev/null || :
fi
Pre uninstall

1
2
3
4
5
if [ "$1" -eq 0 ] ; then
	export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source)
	gconftool-2 --makefile-uninstall-rule \
	/etc/gconf/schemas/gnome-mud.schemas > /dev/null || :
fi