#!/bin/bash

#set -e

if test -x /etc/init.d/nrprobenet; then
  /etc/init.d/nrprobenet stop
fi
if test -x /etc/init.d/bootpd; then
  /etc/init.d/bootpd stop
fi

exit 0