preinst is in cman 3.1.7-0ubuntu2.
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 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/sh
set -e
case $1 in
upgrade)
. /usr/share/debconf/confmodule
db_version 2.0
if dpkg --compare-versions "$2" lt 3.0.0~ ; then
db_fset cman/upgrade-warning seen false
db_input critical cman/upgrade-warning || true
db_go
db_get cman/upgrade-warning
if [ "$RET" = "true" ] ; then
echo "Aborting cman installation."
exit 1
fi
fi
;;
esac
exit 0
|