preinst is in nfs-common 1:1.2.8-6ubuntu1.
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #!/bin/sh
set -e
prepare_rm_conffile() {
local CONFFILE="$1"
local PACKAGE="$2"
[ -e "$CONFFILE" ] || return 0
local md5sum="$(md5sum $CONFFILE | sed -e 's/ .*//')"
local old_md5sum="$(dpkg-query -W -f='${Conffiles}' $PACKAGE | \
sed -n -e "\' $CONFFILE ' { s/ obsolete$//; s/.* //; p }")"
if [ "$md5sum" != "$old_md5sum" ]; then
echo "Obsolete conffile $CONFFILE has been modified by you."
echo "Saving as $CONFFILE.dpkg-bak ..."
mv -f "$CONFFILE" "$CONFFILE.dpkg-backup"
else
echo "Moving obsolete conffile $CONFFILE out of the way..."
mv -f "$CONFFILE" "$CONFFILE.dpkg-remove"
fi
}
# remove the obsolete init script (replaced by an upstart job)
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/nfs-common" ] && [ ! -L "/etc/init.d/nfs-common" ]; then
prepare_rm_conffile /etc/init.d/nfs-common nfs-common
fi
fi
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/statd" ] && [ -L "/etc/init.d/statd" ] \
&& [ $(readlink -f "/etc/init.d/statd") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/statd"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/statd-mounting" ] && [ -L "/etc/init.d/statd-mounting" ] \
&& [ $(readlink -f "/etc/init.d/statd-mounting") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/statd-mounting"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/gssd" ] && [ -L "/etc/init.d/gssd" ] \
&& [ $(readlink -f "/etc/init.d/gssd") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/gssd"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/gssd-mounting" ] && [ -L "/etc/init.d/gssd-mounting" ] \
&& [ $(readlink -f "/etc/init.d/gssd-mounting") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/gssd-mounting"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/idmapd" ] && [ -L "/etc/init.d/idmapd" ] \
&& [ $(readlink -f "/etc/init.d/idmapd") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/idmapd"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/idmapd-mounting" ] && [ -L "/etc/init.d/idmapd-mounting" ] \
&& [ $(readlink -f "/etc/init.d/idmapd-mounting") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/idmapd-mounting"
fi
fi
# End automatically added section
|