aboutsummaryrefslogtreecommitdiff
path: root/src/rfkill
diff options
context:
space:
mode:
Diffstat (limited to 'src/rfkill')
-rwxr-xr-xsrc/rfkill/rc.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rfkill/rc.d b/src/rfkill/rc.d
index ce90ee1..cce4009 100755
--- a/src/rfkill/rc.d
+++ b/src/rfkill/rc.d
@@ -8,7 +8,7 @@ case "$1" in
start)
for device in ${RFKILL_BLOCK}; do
stat_busy "Blocking rfkill device: ${device}"
- /usr/sbin/rfkill block ${device}
+ /usr/bin/rfkill block ${device}
if [ $? -eq 0 ]; then
stat_done
else
@@ -17,7 +17,7 @@ case "$1" in
done
for device in ${RFKILL_UNBLOCK}; do
stat_busy "Unblocking rfkill device: ${device}"
- /usr/sbin/rfkill unblock ${device}
+ /usr/bin/rfkill unblock ${device}
if [ $? -eq 0 ]; then
stat_done
else