meta-hpe: squash latest shellcheck warnings
The latest shellcheck introduced new warnings in meta-hpe. Squash
them with the disable syntax as they seem innocuous.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ie160e02178b70b6025a964569a11a4778c526608
diff --git a/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh b/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
index 3c1bb0f..55dd0c7 100644
--- a/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
+++ b/meta-hpe/meta-dl360-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
@@ -1,4 +1,5 @@
#!/bin/sh
+# shellcheck disable=SC3061
dbus-monitor --system --profile "type='method_call',path='/xyz/openbmc_project/state/host0',interface='org.freedesktop.DBus.Properties',member='Set'" | awk '/xyz.openbmc_project.State.Host/ { print "DONE" }' | while read -r; do
/usr/bin/dl360Start.sh
done
diff --git a/meta-hpe/meta-rl300-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh b/meta-hpe/meta-rl300-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
index c38c087..99e4706 100644
--- a/meta-hpe/meta-rl300-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
+++ b/meta-hpe/meta-rl300-g11/recipes-hpe/power-sequencing/files/ipmi-power-button-monitoring.sh
@@ -1,4 +1,5 @@
#!/bin/sh
+# shellcheck disable=SC3061
dbus-monitor --system --profile "type='method_call',path='/xyz/openbmc_project/state/host0',interface='org.freedesktop.DBus.Properties',member='Set'" | awk '/xyz.openbmc_project.State.Host/ { print "DONE" }' | while read -r ; do
/usr/bin/rl300Start.sh
done