blob: 213d39c9e5b0db8c7f335fa8a495a00578b15e2f [file] [log] [blame]
Alexander Afanasyevbcbf15e2014-05-09 10:23:37 -07001# nfd-restart.conf
2#
3# Restarting NDN Forwarding Daemon on network connectivity changes
4
5start on net-device-up
6task
7instance $IFACE
8
9script
10 status nfd | grep -q start/ || stop
11 restart nfd
12end script