diff --git a/etc/usr/rc b/etc/usr/rc index 31daf1da7..88f1f3db2 100644 --- a/etc/usr/rc +++ b/etc/usr/rc @@ -12,12 +12,10 @@ esac disabled() { - service=$1 - ifs="$IFS"; IFS=, - for name in `sysenv disable` + for skip in `sysenv disable` do - if [ "$name" = "$service" ] + if [ "$skip" = "$1" ] then IFS="$ifs"; unset ifs return 0