summaryrefslogtreecommitdiff
path: root/staging/crda/crda.rc
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-02-17 19:21:14 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-02-17 19:21:14 +0000
commit68998b64e2d81f7e77184b7f23ee141da1d0e2ff (patch)
treedfa6ff47ee59435fe22c16f65d2fc641d78a6417 /staging/crda/crda.rc
parent4fc59478d1180fd7984003f5b1645fe40954299f (diff)
Fri Feb 17 19:21:14 UTC 2012
Diffstat (limited to 'staging/crda/crda.rc')
-rwxr-xr-xstaging/crda/crda.rc26
1 files changed, 0 insertions, 26 deletions
diff --git a/staging/crda/crda.rc b/staging/crda/crda.rc
deleted file mode 100755
index 13dbd870e..000000000
--- a/staging/crda/crda.rc
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/wireless-regdom
-
-case "$1" in
- start)
- if [ -n "${WIRELESS_REGDOM}" ]; then
- stat_busy "Setting wireless regulatory domain: ${WIRELESS_REGDOM}"
- if iw reg set ${WIRELESS_REGDOM}; then
- stat_done
- else
- stat_fail
- fi
- fi
- ;;
- stop)
- ;;
- restart)
- $0 start
- ;;
- *)
- echo "usage: $0 start"
-esac
-exit 0