diff options
-rw-r--r-- | etc/rc.d/localpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/localpkg b/etc/rc.d/localpkg index 9ddd383..257743e 100644 --- a/etc/rc.d/localpkg +++ b/etc/rc.d/localpkg @@ -23,7 +23,7 @@ script_is_rcd() _s="$1" [ -z "$_s" ] && return 1 - match=`grep -c -m1 '^# PROVIDE:' "$_s" 2> /dev/null` + match=`grep -I -c -m1 '^# PROVIDE:' "$_s" 2> /dev/null` [ "$match" = "1" ] && return 0 return 1 } |