blob: 31f9d3e5954a838ea05d40eacc0916dde8e3f612 [file] [log] [blame]
Junxiao Shia59f2072014-04-27 20:52:25 -07001#!/bin/bash
2FACEURI=$1
3
Eric Newberry7745c1a2017-04-20 00:23:05 -07004nfdc face create $FACEURI || exit 1
5
6if ! output=$(nfdc route add ndn:/ $FACEURI)
Junxiao Shia59f2072014-04-27 20:52:25 -07007then
8 return 2
9fi
10
Eric Newberry7745c1a2017-04-20 00:23:05 -070011output=$(nfdc route add ndn:/localhost/test-out $FACEURI 2>&1)
Junxiao Shia59f2072014-04-27 20:52:25 -070012return 0