From 57cd084ff2f96f001045a8849b68877e9db2f6d0 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sat, 25 May 2013 22:15:39 +0200 Subject: rcdscripts: start deprecating /usr/sbin The following scripts were found to be broken due to binaries being moved to /usr/bin: acpid, alsa, fancontrol, sensord, healthd, sshd, rfkill and syslog-ng. I do not doubt several more daemons were moved to /usr/bin already. But there are 230 services in this package and I can't test them all. --- src/rfkill/rc.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rfkill/rc.d') 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 -- cgit v1.2.3