Imported Upstream version 2.40.13.0

This commit is contained in:
Mario Fetka
2017-04-18 13:02:01 +02:00
commit 300ff11969
14 changed files with 1030 additions and 0 deletions

Binary file not shown.

12
amd64/usr/sbin/hpssaducli Executable file
View File

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