Files
server/var/lib/dpkg/info/libapache2-mod-python.postrm
2026-01-07 20:52:11 +01:00

16 lines
350 B
Bash
Executable File

#!/bin/sh
set -e
# Automatically added by dh_apache2/UNDECLARED
if [ "$1" = "purge" ] ; then
if true; then
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
. /usr/share/apache2/apache2-maintscript-helper
for conf in python ; do
apache2_invoke dismod $conf || exit 1
done
fi
fi
fi
# End automatically added section