postinst is in python-rtslib-fb 2.1.57+debian-4.
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 | #!/bin/sh
set -e
if [ "$1" = "configure" ] ; then
update-alternatives --install /usr/bin/targetctl targetctl /usr/bin/targetctl-python2 300
if [ ! -d /etc/rtslib-fb-target ] ; then
mkdir -p /etc/rtslib-fb-target
fi
# If file doesn't exist or is of size zero, write it...
if [ ! -s /etc/rtslib-fb-target/saveconfig.json ] ; then
echo "{
\"fabric_modules\": [],
\"storage_objects\": [],
\"targets\": []
}" >/etc/rtslib-fb-target/saveconfig.json
fi
fi
# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
pycompile -p python-rtslib-fb
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/rtslib-fb-targetctl" ]; then
update-rc.d rtslib-fb-targetctl defaults >/dev/null
invoke-rc.d rtslib-fb-targetctl start || exit $?
fi
fi
# End automatically added section
|