#!/bin/sh

#echo "$0, $1"  >> /var/prerm


case "$1" in
  update)
    ;;
  install)
    ;;
  configure)
    ;;
  remove)
    /etc/init.d/apache stop
    ;;
  *)
    ;;
esac

exit 0
