Correct module enabled test to use .load and not .conf
authorClinton Ebadi <clinton@unknownlamer.org>
Sun, 16 Dec 2012 23:02:05 +0000 (18:02 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Sun, 16 Dec 2012 23:02:05 +0000 (18:02 -0500)
debian/hcoop-apache2-config.postinst

index e7f81ca..4448d88 100644 (file)
@@ -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