postinst is in globus-common-progs 16.0-2.
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 | #!/bin/sh
set -e
# Remove old no longer needed diversion
if dpkg-divert --list /usr/share/globus/config.guess | \
grep -q /usr/share/globus/config.guess.gpt ; then
dpkg-divert --package globus-common-progs --remove --rename --divert \
/usr/share/globus/config.guess.gpt /usr/share/globus/config.guess
fi
|