2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Changed from "which" to "command" to make the script a bit more POSIX compliant

This commit is contained in:
Niall Donegan 2012-08-21 12:07:59 +01:00
parent fdf68ff325
commit 7b5183c7b9

View File

@ -45,9 +45,9 @@ munin-node.
EOF
if [ "$1" = "autoconf" ]; then
if ! which lvs 2>&1 >/dev/null; then
if ! command -v lvs >/dev/null; then
echo "no (lvs not found)"
elif ! which vgs 2>&1 >/dev/null; then
elif ! command -v vgs >/dev/null; then
echo "no (vgs not found)"
else
echo "yes"