aboutsummaryrefslogtreecommitdiff
path: root/misc/xfeast
diff options
context:
space:
mode:
Diffstat (limited to 'misc/xfeast')
-rwxr-xr-xmisc/xfeast15
1 files changed, 0 insertions, 15 deletions
diff --git a/misc/xfeast b/misc/xfeast
deleted file mode 100755
index 8a8504a..0000000
--- a/misc/xfeast
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-#
-# xfeast: execute silc gateway
-#
-
-pid="$HOME/tmp/silc.pid"
-if [[ -f "$pid" ]]; then
- if `ps $pid | grep -q $pid`; then
- kill `cat $pid`
- fi
- rm $pid
-fi
-netcat -l -p 1706 -e "/usr/bin/feast .feast.conf" &
-echo "$!" > $pid
-trap "kill `cat $pid`" 2 15