prerm is in samba 2:3.6.3-2ubuntu2.
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 | #!/bin/sh
set -e
if [ "x$1" != xupgrade ]; then
update-alternatives --remove smbstatus /usr/bin/smbstatus.samba3
fi
# Automatically added by dh_installinit
if [ -e "/etc/init/nmbd.conf" ]; then
invoke-rc.d nmbd stop || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -e "/etc/init/smbd.conf" ]; then
invoke-rc.d smbd stop || exit $?
fi
# End automatically added section
exit 0
|