preinst is in udev 204-5ubuntu20.
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | #!/bin/sh -e
# This script can be called in the following ways:
#
# Before the package is installed:
# <new-preinst> install
#
# Before removed package is upgraded:
# <new-preinst> install <old-version>
#
# Before the package is upgraded:
# <new-preinst> upgrade <old-version>
#
#
# If postrm fails during upgrade or fails on failed upgrade:
# <old-preinst> abort-upgrade <new-version>
# Disable udevadm from being run during an upgrade, to cause installation
# failures of packages which call udevadm trigger without depending on udev
disable_udevadm()
{
dpkg-divert --package fake-udev --rename --divert /bin/udevadm.upgrade \
--add /bin/udevadm
cat <<'UDEVADM' > /bin/udevadm
#!/bin/sh
if [ "$1" = "trigger" ]; then
echo "udevadm trigger is not permitted while udev is unconfigured." 1>&2
exit 1
fi
if [ "$1" = "settle" ]; then
echo "udevadm settle is not permitted while udev is unconfigured." 1>&2
exit 1
fi
exec /bin/bash -c "exec -a \"\$0\" /bin/udevadm.upgrade \"\$@\"" "$0" "$@"
UDEVADM
chmod +x /bin/udevadm
}
case "$1" in
install|upgrade)
disable_udevadm
;;
abort-upgrade)
;;
*)
echo "$0 called with unknown argument \`$1'" 1>&2
exit 1
;;
esac
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/udev" ] && [ -L "/etc/init.d/udev" ] \
&& [ $(readlink -f "/etc/init.d/udev") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/udev"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/udev-finish" ] && [ -L "/etc/init.d/udev-finish" ] \
&& [ $(readlink -f "/etc/init.d/udev-finish") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/udev-finish"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/udevtrigger" ] && [ -L "/etc/init.d/udevtrigger" ] \
&& [ $(readlink -f "/etc/init.d/udevtrigger") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/udevtrigger"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/udevmonitor" ] && [ -L "/etc/init.d/udevmonitor" ] \
&& [ $(readlink -f "/etc/init.d/udevmonitor") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/udevmonitor"
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/udev-fallback-graphics" ] && [ -L "/etc/init.d/udev-fallback-graphics" ] \
&& [ $(readlink -f "/etc/init.d/udev-fallback-graphics") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/udev-fallback-graphics"
fi
fi
# End automatically added section
exit 0
|