| The fix mentioned in 6671 was is attached.
Replace the file spmsg.sh in /opt/steam/bin
Reg
-----cut here----------------------------------------
#! /bin/sh
#
# *****************************************************************
# * *
# * Copyright (c) Digital Equipment Corporation, 1996 *
# * *
# * All Rights Reserved. Unpublished rights reserved under *
# * the copyright laws of the United States. *
# * *
# * The software contained on this media is proprietary to *
# * and embodies the confidential technology of Digital *
# * Equipment Corporation. Possession, use, duplication or *
# * dissemination of the software and media is authorized only *
# * pursuant to a valid written license from Digital Equipment *
# * Corporation. *
# * *
# * RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure *
# * by the U.S. Government is subject to restrictions as set *
# * forth in Subparagraph (c)(1)(ii) of DFARS 252.227-7013, *
# * or in FAR 52.227-19, as applicable. *
# * *
# *****************************************************************
#
# This script is called by the Spinnaker Agent when it is processing
# messages to the system log. The name of this script must be 'spmsg.sh'
# and reside in the steam 'bin' directory.
#
# Arguments:
# Severity: The severity of the event.
# 0=Information.
# 1=Warning.
# 2=Error.
#
# Message: The message string.
#
# Modified 3/16/97 == Added the forgoton PATH Warren Sypteras
#
PATH=.:/etc:/bin:/usr/bin:/usr/ucb:/sbin
export PATH
# build the notify program name from this script program name
# i.e. convert 'spmsg.sh' to 'notify.exe'.
PROGRAM=`echo $0 | sed "s/\spmsg.sh/\notify.exe/g"`
# execute the notify.exe program, sending the severity and message as arguments
$PROGRAM $1 "$2"
|