diff options
author | James Meyer <james.meyer@operamail.com> | 2014-02-17 00:03:35 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2014-02-19 19:03:05 (GMT) |
commit | 8757317b405200fa7d06fafbf1c3e9993e4015d3 (patch) | |
tree | 42d8dae2be10a9c5d9e969a1c4056c1333fe3762 /abs/extra/crda/crda.rc | |
parent | a9abd6237a047a63b9bcf75b90055cb4321dd0f6 (diff) | |
download | linhes_pkgbuild-8757317b405200fa7d06fafbf1c3e9993e4015d3.zip linhes_pkgbuild-8757317b405200fa7d06fafbf1c3e9993e4015d3.tar.gz linhes_pkgbuild-8757317b405200fa7d06fafbf1c3e9993e4015d3.tar.bz2 |
crda: 1.1.3
update binary path to /usr/bin
refs #961
Diffstat (limited to 'abs/extra/crda/crda.rc')
-rwxr-xr-x | abs/extra/crda/crda.rc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/abs/extra/crda/crda.rc b/abs/extra/crda/crda.rc deleted file mode 100755 index 13dbd87..0000000 --- a/abs/extra/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 |