postinst is in capi4hylafax 1:01.03.00.99.svn.300-20build1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/capi4hylafax" ]; then
update-rc.d capi4hylafax defaults 25 25 >/dev/null
fi
if [ -x "/etc/init.d/capi4hylafax" ] || [ -e "/etc/init/capi4hylafax.conf" ]; then
invoke-rc.d capi4hylafax start || exit $?
fi
# End automatically added section
|