From: Clinton Ebadi Date: Sun, 16 Dec 2012 23:02:05 +0000 (-0500) Subject: Correct module enabled test to use .load and not .conf X-Git-Tag: debian/4~1 X-Git-Url: https://git.hcoop.net/hcoop/zz_old/debian/hcoop-apache2-config.git/commitdiff_plain/6f93ec4bc1f397c09ac778cb36fc0b6463308190 Correct module enabled test to use .load and not .conf --- diff --git a/debian/hcoop-apache2-config.postinst b/debian/hcoop-apache2-config.postinst index e7f81ca..4448d88 100644 --- a/debian/hcoop-apache2-config.postinst +++ b/debian/hcoop-apache2-config.postinst @@ -32,7 +32,7 @@ case "$1" in HCOOP_ENABLE_FAILED=0 for mod in $HCOOP_APACHE_MODULES; do - if [ ! -e "/etc/apache2/modules-enabled/${mod}.conf" ]; then + if [ ! -e "/etc/apache2/modules-enabled/${mod}.load" ]; then HCOOP_ENABLED_FAILED=1 fi done