Imported Upstream version 9.40.12.0

This commit is contained in:
Mario Fetka
2016-05-20 22:34:06 +02:00
commit ccfea87235
22 changed files with 1177 additions and 0 deletions

BIN
i386/usr/man/man8/hpacucli.8.gz Executable file

Binary file not shown.

14
i386/usr/sbin/hpacucli Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
PROCESSES=`ps -e|grep "\.hpacucli" |grep -v grep`
if [ "$PROCESSES" != "" ]; then
echo "Another instance of hpacucli is running! Stop it first."
exit 1;
fi
HPACUCLI_BIN_INSTALLATION_DIR=/opt/compaq/hpacucli/bld/
export LD_LIBRARY_PATH=$HPACUCLI_BIN_INSTALLATION_DIR
${HPACUCLI_BIN_INSTALLATION_DIR}mklocks.sh hpacucli
if [ `uname -m` = "ia64" ]; then
/usr/bin/prctl --unaligned=silent $HPACUCLI_BIN_INSTALLATION_DIR.hpacucli $*
else
$HPACUCLI_BIN_INSTALLATION_DIR.hpacucli $*
fi

14
i386/usr/sbin/hpacuscripting Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
PROCESSES=`ps -e|grep "\.hpacuscripting" |grep -v grep`
if [ "$PROCESSES" != "" ]; then
echo "Another instance of hpacuscripting is running! Stop it first."
exit 1;
fi
HPACUCLI_BIN_INSTALLATION_DIR=/opt/compaq/hpacucli/bld/
export LD_LIBRARY_PATH=$HPACUCLI_BIN_INSTALLATION_DIR
${HPACUCLI_BIN_INSTALLATION_DIR}mklocks.sh hpacuscripting
if [ `uname -m` = "ia64" ]; then
/usr/bin/prctl --unaligned=silent $HPACUCLI_BIN_INSTALLATION_DIR.hpacuscripting $*
else
$HPACUCLI_BIN_INSTALLATION_DIR.hpacuscripting $*
fi