From 01aaf63409873c936fd23f9b57f9b541c71d6246 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 14 May 2008 20:29:34 +0000 Subject: [PATCH] -Extend stunnel path acceptence to two more postscripts git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1401 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/xcatclient | 2 +- xCAT/postscripts/xcatserver | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT/postscripts/xcatclient b/xCAT/postscripts/xcatclient index faf1c2d84..5220051cd 100644 --- a/xCAT/postscripts/xcatclient +++ b/xCAT/postscripts/xcatclient @@ -4,7 +4,7 @@ #(C)IBM Corp # -if [ ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit +if [ ! -x /usr/sbin/stunnel -a ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit exit 0 fi allowcred.awk & diff --git a/xCAT/postscripts/xcatserver b/xCAT/postscripts/xcatserver index af16ca22f..885457300 100644 --- a/xCAT/postscripts/xcatserver +++ b/xCAT/postscripts/xcatserver @@ -4,7 +4,7 @@ #(C)IBM Corp # -if [ ! -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 &