#!/bin/bash
if [ $1 = "purge" ]; then
  update-rc.d bootpd remove >/dev/null
  update-rc.d nrprobenet remove >/dev/null
fi
exit 0