Imported Upstream version 2.60.18.0

This commit is contained in:
Mario Fetka
2017-11-10 15:37:41 +01:00
commit fe28cd3d7e
14 changed files with 1024 additions and 0 deletions

Binary file not shown.

12
i386/usr/sbin/ssaducli Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
export SSADU_BIN_INSTALLATION_DIR=/opt/smartstorageadmin/ssaducli/bin/
if [ '/usr/bin/tty -s' -o "$HPLSPINSTALL" = "TRUE" ]; then
${SSADU_BIN_INSTALLATION_DIR}ssaducli $*
else
/usr/bin/X11/xterm -T xterm -hold -e ${SSADU_BIN_INSTALLATION_DIR}ssaducli $*
if [ "$?" != 0 ]; then
exec ${SSADU_BIN_INSTALLATION_DIR}ssaducli $* 2>/dev/null|cat > /dev/null
fi
fi