2 #----------------------------------------------------------------
3 # Simple `.postinst' script for zope-* packages.
4 # First coded by Luca - De Whiskey's - De Vitis <luca@debian.org>
5 #----------------------------------------------------------------
9 # summary of how this script can be called:
10 # * <postinst> `configure' <most-recently-configured-version>
11 # * <old-postinst> `abort-upgrade' <new version>
12 # * <conflictor's-postinst> `abort-remove' `in-favour' <package>
14 # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
15 # <failed-install-package> <version> `removing'
16 # <conflicting-package> <version>
17 # for details, see /usr/doc/packaging-manual/
19 # quoting from the policy:
20 # Any necessary prompting should almost always be confined to the
21 # post-installation script, and should be protected with a conditional
22 # so that unnecessary prompting doesn't happen if a package's
23 # installation fails and the `postinst' is called with `abort-upgrade',
24 # `abort-remove' or `abort-deconfigure'.
27 .
/usr
/share
/debconf
/confmodule
33 db_get
"$(basename $0 .postinst)/postinst" || true
34 test "$RET" = "true" && /etc
/init.d
/zope restart
36 abort-upgrade|abort-remove|abort-deconfigure
)
39 echo "postinst called with unknown argument \`$1'" >&2
44 # Stop the communication with the db.