[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference noted::rsm

Title:Remote System Manager (RSM) Conference
Notice:See 1184.1 for ptr to doc's, 1108 for product mgr info
Moderator:ZENDIA::TBOYLE
Created:Fri Apr 25 1986
Last Modified:Thu Jun 05 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:1687
Total number of notes:6370

1685.0. "syntax error with install command" by PRSSOS::NOBRE (Jocelyne Nobre - CST France) Tue May 06 1997 06:00

	My customer encounters a syntaxe problem inside a command
	procedure using INSTALL OPERATING_SYSTEM command :

$ set verify
$ MANAGE
 distribution_service
 install operating_system -
 TEST_ANNBIS .SPV.RSM.WSH319 /retry -
 /libr=(server=.spv.rsm.annbis)/force_reinstal /shutdown -
 /system_device=DKA0: - 
 /notify=(success:RSM$RVI,failure:RSM$RVI)
 exit
 exit
$ exit

the log file contains the error message  :

>>          A L P H A   L A V C    P R O D U C T I O N   S T - P R I E S T
>>
>>$!  Copyright (c) 1994 Digital Equipment Corporation.  All rights reserved.
>>$set process/name=RSM$SDS_WSH359
>>$RSM$RETRY_REQUIRED = "FALSE"
>>$SUBMIT = "SUBMIT"
>>$if p2 .eqs. "" then p2 = "0"
>>$if $RESTART .and. (p2 .eqs. "0") then -
>>$ p2 = "1"
>>$MCR RSM$SDS_INSTALL "WSH359" -  ! "'p1'" maintains param position
>>                      "0" -  ! even if null so image can detect it
>>                      
>>$ mcr NCP
>>SET NODE WSH359 HARDWARE ADDRESS LURE:RSM$RVI)
>>%NCP-E-SYNTAX, command syntax error   ADDRESS \LURE\:RSM$RVI)
>>					      ***************
>> CLEAR NODE WSH359 SECONDARY LOADER 

this " lure:rsm$rvi" come from 
/notify=(success:RSM$RVI,failure:RSM$RVI)

to make this work , the customer has to change the procedure
like that :


$ !
$ set verify
$ MANAGE
 distribution_service
 install operating_system -
 TEST_ANNBIS .SPV.RSM.WSH319/retry -
 /force_reinstal -
 /shutdown/system_device=DKA0: -
 /notify=all=RSM$RVI/library=server=.spv.rsm.annbis
 exit
 exit
$ exit
$ !
			Thanks a lot for idea
			Regards,
	JOcelyne
T.RTitleUserPersonal
Name
DateLines
1685.1CSC32::LAWSONWed May 07 1997 14:346
    Judging from the text that appears to be being used, it looks like
    the CLI command overflowed its buffer, and overwrote a memory location
    that was supposed to have contained the text of the hardware address
    of the client (08-00-2B-xx-yy-zz).  
    
    Can you shorten the command?
1685.2yes, a shoter command worksPRSSOS::NOBREJocelyne Nobre - CST FranceFri May 09 1997 04:307
	Thanks for your reply
	I gave you the command procedure which works in .0
	I just want to know if this problem is fixed somewhere.

	Regards,
	JOcelyne.