When deploying sw to a client all our sw fits on one cdrom. However we have recently automated the install of all the 3rd party sw. The perl script that does this in on our cdrom but we need to eject the cdrom to insert the 3rd party sw. Is there anyway of doing this?
What I need is to be able to do the following
insert MyCDROM
execute /cdrom/MyCDROM/bin/inst.pl
eject cdrom (While inst.pl is still running)
insert 3rdPartyCDROM
The current soultion copy the current cdrom into /tmp and then run inst.pl
however this would then require two commands
1)cp
2)inst.pl
I don't want this because I have alot of 3rd party sw to install and I may not wat all of it on at once.
What I need is to be able to do the following
insert MyCDROM
execute /cdrom/MyCDROM/bin/inst.pl
eject cdrom (While inst.pl is still running)
insert 3rdPartyCDROM
The current soultion copy the current cdrom into /tmp and then run inst.pl
however this would then require two commands
1)cp
2)inst.pl
I don't want this because I have alot of 3rd party sw to install and I may not wat all of it on at once.