summaryrefslogtreecommitdiff
path: root/docker-test/intercept
diff options
context:
space:
mode:
authorJoseph Henry <josephjah@gmail.com>2015-11-20 01:13:04 -0800
committerJoseph Henry <josephjah@gmail.com>2015-11-20 01:13:04 -0800
commit7173b0124b598bbf5258ee587fb827805dff1c9e (patch)
tree0ca82d411d9084ba91a4764785a786968e3d5c64 /docker-test/intercept
parent1f27022fa75b71ce7da63ffa47b457622e74d6a1 (diff)
downloadinfinitytier-7173b0124b598bbf5258ee587fb827805dff1c9e.tar.gz
infinitytier-7173b0124b598bbf5258ee587fb827805dff1c9e.zip
Removed old test directory
Diffstat (limited to 'docker-test/intercept')
-rwxr-xr-xdocker-test/intercept54
1 files changed, 0 insertions, 54 deletions
diff --git a/docker-test/intercept b/docker-test/intercept
deleted file mode 100755
index 3eb27ff7..00000000
--- a/docker-test/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/libintercept.so.1.0"
- else
- echo $LD_PRELOAD | grep -q "/lib/libintercept\.so.1.0" || \
- export LD_PRELOAD="/lib/libintercept.so $LD_PRELOAD"
- fi
- ;;
- off)
- export LD_PRELOAD=`echo -n $LD_PRELOAD | sed 's/\/lib\/libintercept.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/libintercept.so.1.0"
- else
- echo $LD_PRELOAD | grep -q "/lib/libintercept\.so.1.0" || \
- export LD_PRELOAD="/lib/libintercept.so.1.0 $LD_PRELOAD"
- fi
-
- if [ $# = 0 ]
- then
- ${SHELL:-/bin/sh}
- fi
-
- if [ $# -gt 0 ]
- then
- exec "$@"
- fi
- ;;
-esac
-
-#EOF