postinst is in drbd-utils 8.9.10-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 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/sh
set -e
# Cleanup the old systemd unit state, if applicable
if dpkg --compare-versions "$2" lt-nl "8.9.5-1~"; then
if deb-systemd-helper debian-installed drbd.service; then
deb-systemd-helper purge drbd.service >/dev/null
deb-systemd-helper unmask drbd.service >/dev/null
fi
fi
# Disable the DRBD service by default on new installations
if [ -z "$2" ]; then
update-rc.d drbd defaults >/dev/null || true
update-rc.d drbd disable >/dev/null || true
fi
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/drbd" ]; then
update-rc.d drbd defaults >/dev/null || exit $?
fi
fi
# End automatically added section
|