#!/bin/sh

set -e

for i in apache apache-ssl apache-perl; do
	if [ -e /etc/$i/httpd.conf ]; then
		modules-config $i enable mod_iptos
	fi
done

#DEBHELPER#

exit 0
