From f644ad6ffd254a7a295aa1187e069034d368e95b Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 21 Nov 2012 16:50:25 +0000 Subject: [PATCH] Fix problem where mktoolscenter presumes a filename scheme that is not likely to be found in the wild anymore git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14383 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/share/xcat/tools/mktoolscenter | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/share/xcat/tools/mktoolscenter b/xCAT-server/share/xcat/tools/mktoolscenter index 695453ef0..1d82abeb0 100755 --- a/xCAT-server/share/xcat/tools/mktoolscenter +++ b/xCAT-server/share/xcat/tools/mktoolscenter @@ -433,7 +433,7 @@ export SEP_INSTALL_PATH=/tmp # UXSPI environment variable export UXLITE_CLEAN_INVFILE=1 export UXSPI_CLEAN_INVFILE=1 -export UXSPI_BINARY_PATH=`find /toolscenter/uxspi -name 'uxspi*.anyos' | sort | tail -n 1` +export UXSPI_BINARY_PATH=`find /toolscenter/uxspi -name '*uxspi*.anyos*' | sort | tail -n 1` export UXSPI_GUI_CMD="xterm -geometry 168x58+5+5 +sb -e ${UXSPI_BINARY_PATH}" export UXSPI_TUI_CMD="${UXSPI_BINARY_PATH} update --tui --firmware -l ${UXSPI_BOOTABLE} --timeout=${UXSPI_TIMEOUT}"