From bc3d7d11fe13ce7b3a01b77e1002a78e53d99f83 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 16 Jun 2016 14:50:08 -0700 Subject: Remove netcon from dev branch. This is moving to its own new ZeroTierSDK repo for future release under the SDK name. --- netcon/zerotier-intercept | 54 ----------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100755 netcon/zerotier-intercept (limited to 'netcon/zerotier-intercept') diff --git a/netcon/zerotier-intercept b/netcon/zerotier-intercept deleted file mode 100755 index f35c9d15..00000000 --- a/netcon/zerotier-intercept +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -# usage: -# /usr/bin/intercept program - -if [ $# = 0 ] ; then - echo "$0: insufficient arguments" - exit -fi - -case "$1" in - on) - if [ -z "$LD_PRELOAD" ] - then - export LD_PRELOAD="/lib/libzerotierintercept.so" - else - echo $LD_PRELOAD | grep -q "/lib/libzerotierintercept\.so" || \ - export LD_PRELOAD="/lib/libzerotierintercept.so $LD_PRELOAD" - fi - ;; - off) - export LD_PRELOAD=`echo -n $LD_PRELOAD | sed 's/\/lib\/libzerotierintercept.so \?//'` - 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" - else - echo $LD_PRELOAD | grep -q "/lib/libzerotierintercept\.so" || \ - export LD_PRELOAD="/lib/libzerotierintercept.so $LD_PRELOAD" - fi - - if [ $# = 0 ] - then - ${SHELL:-/bin/sh} - fi - - if [ $# -gt 0 ] - then - exec "$@" - fi - ;; -esac - -#EOF -- cgit v1.2.3