preinst is in bdii 5.2.23-1.
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 11 12 13 | #!/bin/sh
set -e
# Old versions with slapd configs listed in conffiles
dpkg-maintscript-helper rm_conffile \
/etc/bdii/bdii-slapd.conf 5.2.5-2+wheezy1~ bdii -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/bdii/bdii-top-slapd.conf 5.2.5-2+wheezy1~ bdii -- "$@"
# Remove obsolete cron script left behind by dpkg
dpkg-maintscript-helper rm_conffile \
/etc/cron.d/bdii-proxy 5.2.5-2+wheezy1~ bdii -- "$@"
|