From 3cb83b2a19e14057a3ca04cd789673c5cfaef932 Mon Sep 17 00:00:00 2001 From: jjohnson2 Date: Fri, 30 Jan 2015 17:00:19 -0500 Subject: [PATCH] Recognize confetty installed by pip On some systems, pip install confetty will go to /usr/local/bin. Recognize and accept that. --- xCAT-client/bin/rcons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-client/bin/rcons b/xCAT-client/bin/rcons index ee4fa2928..a2baa3326 100755 --- a/xCAT-client/bin/rcons +++ b/xCAT-client/bin/rcons @@ -52,7 +52,7 @@ if [ -n "$2" ]; then fi fi -if [ -x "/opt/confluent/bin/confetty" ] || [ -x "/usr/bin/confetty" ]; then +if [ -x "/opt/confluent/bin/confetty" ] || [ -x "/usr/bin/confetty" ] || [ -x "/usr/local/bin/confetty" ]; then #use confluent CONFETTY="confetty" if [ -x "/opt/confluent/bin/confetty" ]; then