#!/bin/sh

set -e

if [ "$1" = remove ] ; then
        MD5SUM="`md5sum /var/www/default/index.html 2>/dev/null | cut -d ' ' -f 1`"
        case "$MD5SUM" in
		4f264ae5fc7173e43656d985e833e213)
                        rm -f /var/www/default/index.html
			rmdir --ignore-fail-on-non-empty /var/www/default
                        ;;
        esac
fi

#DEBHELPER#

exit 0

