Fix for backward compatibility in /etc/profile.d/umm.sh

Pacemaker use /bin/sh even #!/bin/bash is set.

Change-Id: Ifea408f5825b4b0b2564c7f8e8b9216e9fa2b25d
Closes-Bug: #1558963
This commit is contained in:
Peter Zhurba 2016-03-18 12:11:46 +02:00
parent eb22a92462
commit 9cecd81351
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
if [ "z`umm status`" == "zumm" ] ; then
if [ "z`umm status`" = "zumm" ] ; then
cat /etc/issue.mm
[ "$#" != "0" ] && echo "$@"
fi