summaryrefslogtreecommitdiffstats
path: root/abs/core/ipw3945d/ipw3945d.rc
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-04-16 21:17:04 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-04-16 21:17:04 (GMT)
commite7ee4654a4458469999f591478d748a17c94c4f2 (patch)
treeaa9851a3cd051bcc4cacff09196e5c85392b6f31 /abs/core/ipw3945d/ipw3945d.rc
parent2e362cac2506ccf479fe3133edcb41359da33115 (diff)
downloadlinhes_pkgbuild-e7ee4654a4458469999f591478d748a17c94c4f2.zip
linhes_pkgbuild-e7ee4654a4458469999f591478d748a17c94c4f2.tar.gz
linhes_pkgbuild-e7ee4654a4458469999f591478d748a17c94c4f2.tar.bz2
ipw3945d & ipw3945-ucode: remove old pkgs
Diffstat (limited to 'abs/core/ipw3945d/ipw3945d.rc')
-rw-r--r--abs/core/ipw3945d/ipw3945d.rc42
1 files changed, 0 insertions, 42 deletions
diff --git a/abs/core/ipw3945d/ipw3945d.rc b/abs/core/ipw3945d/ipw3945d.rc
deleted file mode 100644
index b0e02bb..0000000
--- a/abs/core/ipw3945d/ipw3945d.rc
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /sbin/ipw3945d`
-case "$1" in
- start)
- stat_busy "Starting IPW3945d"
- [ -z "$PID" ] && /sbin/ipw3945d --quiet
- if [ $? -gt 0 ]; then
- stat_fail
- else
- echo `pidof -o %PPID /sbin/ipw3945d` > /var/run/ipw3945d.pid
- add_daemon ipw3945d
- sleep 1 # not good, but daemon needs time to upload to card, otherwise network fails.
- stat_done
- fi
-
- sleep 0.5
- ;;
- stop)
- stat_busy "Stopping IPW3945d"
- [ ! -z "$PID" ] && /sbin/ipw3945d --kill
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon ipw3945d
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
-