#!/bin/bash
# post removal script for the Debian GNU/Linux nis package

if [ $1 = "purge" ]
then
  update-rc.d nis remove >/dev/null
fi

exit 0
