diff options
Diffstat (limited to 'abs/extra-testing/crda/crda.rc')
-rwxr-xr-x | abs/extra-testing/crda/crda.rc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/abs/extra-testing/crda/crda.rc b/abs/extra-testing/crda/crda.rc deleted file mode 100755 index 13dbd87..0000000 --- a/abs/extra-testing/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 |