Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
So it seems HP found a workaround in the meantime, and I suppose there should be a patch for your version, too.# JAGae29563 ( uname(1) is displaying -t as the OS name )
# Adding a condition to check OPERATING_SYSTEM, before sending it to
# setuname. previously setuname was called as "setuname -s
# $OPERATING_SYSTEM -t". If OPERATING_SYSTEM is not set, then -t
# is taken as argument to -s and OPERATING_SYSTEM is set to -t.
# The manpage of setuname clearly says, -s needs an argument.
if [ -z "$OPERATING_SYSTEM" ]; then
echo "WARNING: OPERATING_SYSTEM is not set."
echo " using default value of HP-UX"
OPERATING_SYSTEM=HP-UX
fi
setuname -t -s $OPERATING_SYSTEM