postinst is in python-designate-dashboard 2.0.0-1.
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 | #!/bin/sh
set -e
if [ "$1" = "configure" ] ; then
# Compress the JS and CSS with python-compressor and python-lesscpy
#OSLO_PACKAGE_VERSION=2.0.0.0rc2 /usr/share/openstack-dashboard/manage.py compress --force
#rm /var/lib/openstack-dashboard/secret-key/.secret_key_store
#chown -R www-data /var/lib/openstack-dashboard/secret-key
echo "No static, so not compress or collecstatic with designate"
fi
# Automatically added by dhpython:
if which pycompile >/dev/null 2>&1; then
pycompile -p python-designate-dashboard
fi
# End automatically added section
exit 0
|