1834811 Members
2499 Online
110070 Solutions
New Discussion

ignite

 
SOLVED
Go to solution
Jon Steele
Valued Contributor

ignite

I am printing my system information on the machines that I ignite.It prints everything fine.I was wondering if there was a way I could edit that file and add the serial number of the machine so it prints it out on the system information sheet that prints out from ignite.

Thank you for your help

Jon
6 REPLIES 6
Marvin Strong
Honored Contributor
Solution

Re: ignite

Just to be clear, you are using print_manifest, and you want to add the system serial number to that file?

you can retreive the system serial number doing the following>

cstm << eof | grep "system serial"
sel all
info
infolog
quit
OK
eof

combined with sed you could certainly add the serial number to the print_manifest output.


James R. Ferguson
Acclaimed Contributor

Re: ignite

Hi Jon:

You should have (or can create) the file '/var/opt/ignite/local/manifest/manifest.seed'.

In it place the a line with the keyword SERIAL, a space, and the quoted value of the serial number.

Regards!

...JRF...
Torsten.
Acclaimed Contributor

Re: ignite

Hi Jon,

try this command

echo "sel dev 1; info; wait;il"|cstm|grep "System Serial Number"

This should work if supported by hardware.


Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Jon Steele
Valued Contributor

Re: ignite

Thank you all for your help.It works now.

Jon
Cem Tugrul
Esteemed Contributor

Re: ignite

print_manifest|grep -i "serial number"
Our greatest duty in this life is to help others. And please, if you can't
Jon Steele
Valued Contributor

Re: ignite

Thank you to all