Alexander Afanasyev | 94c793a | 2015-07-23 04:11:36 +0000 | [diff] [blame^] | 1 | description "NDN TLV ping server" |
2 | author "Alexander Afanasyev <alexander.afanasyev@ucla.edu>" | ||||
3 | |||||
4 | start on started nfd | ||||
5 | stop on stopping nfd | ||||
6 | |||||
7 | respawn | ||||
8 | respawn limit unlimited | ||||
9 | |||||
10 | setuid ndn | ||||
11 | setgid ndn | ||||
12 | |||||
13 | script | ||||
14 | FLAGS="" | ||||
15 | PREFIX="/localhost/ndnpingserver" | ||||
16 | if [ -f /etc/default/ndnping ]; then | ||||
17 | . /etc/default/ndnping | ||||
18 | fi | ||||
19 | export HOME=/var/lib/ndn/ndnping | ||||
20 | exec /usr/bin/ndnpingserver "$PREFIX" $FLAGS | ||||
21 | end script |