summaryrefslogtreecommitdiffstats
path: root/network/ike/rc.iked
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-11-18 23:01:24 -0600
committer Robby Workman <rworkman@slackbuilds.org>2013-11-22 00:09:07 -0600
commitf728ad6b39a5ef272efb0e2f667c0e1030485c37 (patch)
treea193e6435d843a2c08b16ea0542b5ce41dfded3e /network/ike/rc.iked
parentbc7e3e4d5cad4aa912bfeb7db4d38327746bee2e (diff)
downloadslackbuilds-f728ad6b39a5ef272efb0e2f667c0e1030485c37.tar.gz
slackbuilds-f728ad6b39a5ef272efb0e2f667c0e1030485c37.tar.xz
network/ike: Removed (build failure)
If upstream still hasn't bothered to port this to qt4, then I have to wonder why we're still dragging the corpse along. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/ike/rc.iked')
-rw-r--r--network/ike/rc.iked45
1 files changed, 0 insertions, 45 deletions
diff --git a/network/ike/rc.iked b/network/ike/rc.iked
deleted file mode 100644
index c80894fee6..0000000000
--- a/network/ike/rc.iked
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/rc.iked
-#
-# Start/stop/restart the Shrew Soft IKE daemon.
-#
-
-# Start iked:
-iked_start() {
- if [ -x /usr/sbin/iked ]; then
- echo "Starting the Shrew Soft IKE daemon: /usr/sbin/iked"
-
- if [ -z "$(/sbin/lsmod | grep "^tun ")" ]; then
- /sbin/modprobe tun
- fi
-
- /usr/sbin/iked
- fi
-}
-
-# Stop iked:
-iked_stop() {
- killall iked
-}
-
-# Restart iked:
-iked_restart() {
- iked_stop
- sleep 1
- iked_start
-}
-
-case "$1" in
-'start')
- iked_start
- ;;
-'stop')
- iked_stop
- ;;
-'restart')
- iked_restart
- ;;
-*)
- echo "usage $0 start|stop|restart"
-esac