cabal-debian-4.0.4: test-data/clckwrks-dot-com/output/debian/clckwrks-dot-com-production.postinst
#!/bin/sh
case "$1" in
configure)
# Apache won't start if this directory doesn't exist
mkdir -p /var/log/apache2/clckwrks-dot-com-production
# Restart apache so it sees the new file in /etc/apache2/sites-enabled
/usr/sbin/a2enmod proxy
/usr/sbin/a2enmod proxy_http
service apache2 restart
;;
esac
#DEBHELPER#
exit 0