postinst is in stacks-web 1.35-1ubuntu1.
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 | #!/bin/sh
set -e
if [ "$1" = configure ] ; then
#Lintain complains about this, but I do not know what is actually expected
#Manpage of a2enconf says that "a2enconf -m" is correct.
# a2enconf -m stacks-web
if [ -e /usr/share/apache2/apache2-maintscript-helper ]
then
. /usr/share/apache2/apache2-maintscript-helper
apache2_invoke enconf stacks-web || exit
fi
# Also sort out perms for export dir
chown 'root:www-data' /var/lib/stacks/export
chmod 770 /var/lib/stacks/export
fi
|