diff options
author | Joseph Henry <josephjah@gmail.com> | 2015-11-20 01:22:15 -0800 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2015-11-20 01:22:15 -0800 |
commit | 126fc46dc45e312dc469c0076b34bc2c7898262b (patch) | |
tree | 138cbe126f721c914d9883d1bf5036f81f1f3d86 /netcon/docker-test | |
parent | d2e624f301b87905d119895652224c3f52fd451a (diff) | |
download | infinitytier-126fc46dc45e312dc469c0076b34bc2c7898262b.tar.gz infinitytier-126fc46dc45e312dc469c0076b34bc2c7898262b.zip |
Updated makefile, removed old results directory
Diffstat (limited to 'netcon/docker-test')
-rwxr-xr-x | netcon/docker-test/zerotier-intercept | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/netcon/docker-test/zerotier-intercept b/netcon/docker-test/zerotier-intercept deleted file mode 100755 index 85e9fba1..00000000 --- a/netcon/docker-test/zerotier-intercept +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -# usage: -# /usr/bin/intercept program <args> - -if [ $# = 0 ] ; then - echo "$0: insufficient arguments" - exit -fi - -case "$1" in - on) - if [ -z "$LD_PRELOAD" ] - then - export LD_PRELOAD="/lib/libzerotierintercept.so.1.0" - else - echo $LD_PRELOAD | grep -q "/lib/libzerotierintercept\.so.1.0" || \ - export LD_PRELOAD="/lib/libzerotierintercept.so $LD_PRELOAD" - fi - ;; - off) - export LD_PRELOAD=`echo -n $LD_PRELOAD | sed 's/\/lib\/libzerotierintercept.so.1.0 \?//'` - if [ -z "$LD_PRELOAD" ] - then - unset LD_PRELOAD - fi - ;; - show|sh) - echo "LD_PRELOAD=\"$LD_PRELOAD\"" - ;; - -h|-?) - echo "" - ;; - *) - if [ -z "$LD_PRELOAD" ] - then - export LD_PRELOAD="/lib/libzerotierintercept.so.1.0" - else - echo $LD_PRELOAD | grep -q "/lib/libzerotierintercept\.so.1.0" || \ - export LD_PRELOAD="/lib/libzerotierintercept.so.1.0 $LD_PRELOAD" - fi - - if [ $# = 0 ] - then - ${SHELL:-/bin/sh} - fi - - if [ $# -gt 0 ] - then - exec "$@" - fi - ;; -esac - -#EOF |