postinst is in ikiwiki-hosting-web 0.20170622ubuntu1.
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 | #!/bin/sh
set -e
if [ "$1" = configure ]; then
. /etc/ikiwiki-hosting/ikiwiki-hosting.conf || true
if [ -n "$gitdaemondir" ] && [ -n "$gitdaemonuser" ]; then
adduser --quiet --system --group --no-create-home --home "$gitdaemondir" "$gitdaemonuser"
fi
fi
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/ikiwiki-hosting-web" ]; then
update-rc.d ikiwiki-hosting-web defaults >/dev/null
if [ -n "$2" ]; then
_dh_action=restart
else
_dh_action=start
fi
invoke-rc.d ikiwiki-hosting-web $_dh_action || exit $?
fi
fi
# End automatically added section
a2enmod suexec
a2enmod ssl
if which invoke-rc.d >/dev/null 2>&1; then
invoke-rc.d apache2 restart
else
/etc/init.d/apache2 restart
fi
|