diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-01-20 16:59:59 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-01-20 16:59:59 -0800 |
commit | 227b8bfbf619e1d9862a000112c4a56e41f76c88 (patch) | |
tree | f6183a9d074ccf7a8455ded3825168f8874a7359 /netcon | |
parent | 385770dcc8880eea8495eb9dd8ada39493d05c89 (diff) | |
parent | 4f6ca14d4f625c4e90446f56aae416fd0b7146c0 (diff) | |
download | infinitytier-227b8bfbf619e1d9862a000112c4a56e41f76c88.tar.gz infinitytier-227b8bfbf619e1d9862a000112c4a56e41f76c88.zip |
Merge branch 'edge' of http://10.6.6.2/zerotier/ZeroTierOne into edge
Diffstat (limited to 'netcon')
-rw-r--r-- | netcon/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/netcon/README.md b/netcon/README.md index 19258639..25fac36a 100644 --- a/netcon/README.md +++ b/netcon/README.md @@ -161,12 +161,18 @@ To run unit tests: mkdir -p /tmp/netcon_first cp -f ./netcon/liblwip.so /tmp/netcon_first ./zerotier-netcon-service -d -p8100 /tmp/netcon_first + while [ ! -f /tmp/netcon_first/identity.secret ]; do + sleep 0.1 + done ./zerotier-cli -D/tmp/netcon_first join 8056c2e21c000001 kill `cat /tmp/netcon_first/zerotier-one.pid` mkdir -p /tmp/netcon_second cp -f ./netcon/liblwip.so /tmp/netcon_second ./zerotier-netcon-service -d -p8101 /tmp/netcon_second + while [ ! -f /tmp/netcon_second/identity.secret ]; do + sleep 0.1 + done ./zerotier-cli -D/tmp/netcon_second join 8056c2e21c000001 kill `cat /tmp/netcon_second/zerotier-one.pid` |