Files
NFD/tools/nfd-stop.sh
T
Alexander Afanasyev f08a7376e9 daemon+rib: Merge nrd and nfd into a single process (separate threads)
Change-Id: I41952d5b8ee29f109130c570e0d13ccad6970d2f
Refs: #2489
2015-02-15 12:43:49 -08:00

24 lines
261 B
Bash
Executable File

#!@BASH@
VERSION="@VERSION@"
case "$1" in
-h)
echo Usage
echo $0
echo " Stop NFD"
exit 0
;;
-V)
echo $VERSION
exit 0
;;
"") ;; # do nothing
*)
echo "Unrecognized option $1"
exit 1
;;
esac
sudo killall nfd