occ-active.sh: case insensitive for sensor names

Allows to have the OCC sensor name in upper case.

Change-Id: Icbe5979fa36044806dc880509c782a571aa0a960
Signed-off-by: Alexander Filippov <a.filippov@yadro.com>
diff --git a/recipes-phosphor/occ/openpower-occ-control/occ-active.sh b/recipes-phosphor/occ/openpower-occ-control/occ-active.sh
index a6097e5..dc1f39b 100755
--- a/recipes-phosphor/occ/openpower-occ-control/occ-active.sh
+++ b/recipes-phosphor/occ/openpower-occ-control/occ-active.sh
@@ -14,7 +14,7 @@
 
 OCC_CONTROL_SERVICE="org.open_power.OCC.Control"
 
-busctl tree $OCC_CONTROL_SERVICE --list | grep occ | xargs -r -n1 -I{} \
+busctl tree $OCC_CONTROL_SERVICE --list | grep -i occ | xargs -r -n1 -I{} \
     busctl set-property $OCC_CONTROL_SERVICE {} org.open_power.OCC.Status \
     OccActive b $value
 exit 0