#!/bin/bash

set -e 


case "$1" in
    remove|deconfigure)
      echo 'I will not do so, (as you may have some config stuff in there left),'
      echo 'but you probably want to do:'
      echo
      echo '  rm -rf /tftpboot'

      #rm /var/lib/nfsroot/arplist

        /etc/init.d/bind stop
    ;;
    upgrade)
    ;;
    failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac

