2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 09:13:08 +00:00

fix for bug 3841: syntax error in remoteshell postscript

This commit is contained in:
ligc 2013-10-18 15:58:18 +08:00
parent e5d8576cfd
commit c30f46cc80

View File

@ -32,7 +32,7 @@ fi
master=$MASTER
# are we using xcat flow control
useflowcontrol=0
if [ $USEFLOWCONTROL = "YES" ] || [ $USEFLOWCONTROL = "yes" ] || [ $USEFLOWCONTROL = "1" ]; then
if [ "$USEFLOWCONTROL" = "YES" ] || [ "$USEFLOWCONTROL" = "yes" ] || [ "$USEFLOWCONTROL" = "1" ]; then
useflowcontrol=1
fi