This file is indexed.

postinst is in python-heat-dashboard 1.0.2-0ubuntu2.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
23
24
25
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	# Compress the JS and CSS with python-compressor and python-lesscpy
	/usr/share/openstack-dashboard/manage.py compress --force
	if [ -f '/var/lib/openstack-dashboard/secret-key/.secret_key_store' ]; then
		rm -f /var/lib/openstack-dashboard/secret-key/.secret_key_store
	fi
	if [ -d /var/lib/openstack-dashboard ]; then
		chown -R horizon:horizon /var/lib/openstack-dashboard
	fi
fi


# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
	pycompile -p python-heat-dashboard 
fi

# End automatically added section


exit 0