postinst is in dcmtk 3.6.0-15.
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
# Create dcmtk user and group
if ! getent passwd dcmtk >/dev/null 2>&1; then
if ! getent group dcmtk > /dev/null 2>&1; then
echo "Adding \`dcmtk' group to system ..."
addgroup --quiet --system dcmtk || true
fi
echo "Adding \`dcmtk' user to system ..."
adduser --quiet --system --ingroup dcmtk --home /var/lib/dcmtk/db \
--shell /bin/sh --disabled-password dcmtk || true
fi
# work around possible adduser bug, see #119366
[ -d /var/lib/dcmtk/db ] || mkdir -p /var/lib/dcmtk/db
chmod 755 /var/lib/dcmtk/db
chown -h -R dcmtk:dcmtk /var/lib/dcmtk/db || true
[ -d /var/lib/dcmtk/db/STORESCP ] || mkdir -p /var/lib/dcmtk/db/STORESCP
# Handle imagectn -> dcmqrdb transition in (3.5.3 -> 3.5.4)
LASTVERSION=3.5.3-5
case "$1" in
configure)
if dpkg --compare-versions "$2" le "$LASTVERSION"; then
if [ -e "/etc/dcmtk/imagectn.cfg" ]; then
echo
echo "Configuration file /etc/dcmtk/imagectn.cfg has been modified by user."
echo "This file will be renamed to /etc/dcmtk/dcmqrscp.cfg."
echo "The package default version can be found in /etc/dcmtk/dcmqrscp.cfg.dpkg-new."
echo
mv -f /etc/dcmtk/dcmqrscp.cfg /etc/dcmtk/dcmqrscp.cfg.dpkg-new
mv -f /etc/dcmtk/imagectn.cfg /etc/dcmtk/dcmqrscp.cfg
fi
if [ -e "/etc/default/imagectn" ]; then
echo "Configuration file /etc/default/imagectn has been modified by user."
echo "This file will be converted to and replaced by /etc/default/dcmqrscp."
echo "The user's old version can be found in /etc/default/imagectn.dpkg-old."
echo "The package default version can be found in /etc/default/dcmqrscp.dpkg-new."
echo
mv -f /etc/default/imagectn /etc/default/imagectn.dpkg-old
mv -f /etc/default/dcmqrscp /etc/default/dcmqrscp.dpkg-new
sed -e 's/IMAGECTN_ENABLE/DCMQRSCP_ENABLE/g' -e 's/imagectn/dcmqrscp/g' \
</etc/default/imagectn.dpkg-old >/etc/default/dcmqrscp
fi
if [ -e "/etc/init.d/imagectn" ]; then
echo "Configuration file /etc/init.d/imagectn has been modified by user."
echo "This file will be replaced by /etc/init.d/dcmqrscp."
echo "The user's old version can be found in /etc/init.d/imagectn.dpkg-old"
echo
mv -f /etc/init.d/imagectn /etc/init.d/imagectn.dpkg-old
fi
# Remove (dangling) symlinks in /etc/rcN.d
update-rc.d imagectn remove >/dev/null
fi
esac
# Automatically added by dh_installinit
if [ -x "/etc/init.d/dcmqrscp" ] || [ -e "/etc/init/dcmqrscp.conf" ]; then
if [ ! -e "/etc/init/dcmqrscp.conf" ]; then
update-rc.d dcmqrscp defaults >/dev/null
fi
invoke-rc.d dcmqrscp start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/storescp" ] || [ -e "/etc/init/storescp.conf" ]; then
if [ ! -e "/etc/init/storescp.conf" ]; then
update-rc.d storescp defaults >/dev/null
fi
invoke-rc.d storescp start || exit $?
fi
# End automatically added section
|