Add modules to repository

This commit is contained in:
Sebastian Kinne
2017-11-16 16:42:22 +11:00
commit d0aa1e38ef
707 changed files with 96750 additions and 0 deletions

16
ngrep/scripts/ngrep.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
#2015 - Whistle Master
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/sd/lib:/sd/usr/lib
export PATH=$PATH:/sd/usr/bin:/sd/usr/sbin
MYTIME=`date +%s`
MYCMD=`cat /tmp/ngrep.run`
if [ "$1" = "start" ]; then
eval ${MYCMD}
rm -rf /tmp/ngrep.run
elif [ "$1" = "stop" ]; then
killall ngrep
rm -rf /tmp/ngrep.run
fi