fix existence for stunnel check to include both /usr/bin and /usr/bin

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2277 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2008-10-02 19:07:30 +00:00
parent b399d2ce70
commit 09fd6abd37

View File

@ -4,7 +4,7 @@
#(C)IBM Corp
#
if [ ! -x /usr/sbin/stunnel -a ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit
if [ ! -x /usr/sbin/stunnel -a ! -x /usr/bin/stunnel ]; then #Stop if no stunnel to help the next bit
exit 0
fi
allowcred.awk &