prerm is in samba-common-bin 2:3.6.25-0ubuntu0.12.04.10.
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
if [ "x$1" != xupgrade ]; then
update-alternatives --remove nmblookup /usr/bin/nmblookup.samba3
update-alternatives --remove net /usr/bin/net.samba3
update-alternatives --remove testparm /usr/bin/testparm.samba3
fi
exit 0
|