in reply to Simultaneous execution of installation script

I don't really think this is a Perl question per-se, however, I assume that you want to use ssh (probably with keypairs to avoid the need to store logins and password) to execute the same script on the remote server.

Your initial Perl script could do this for you with system() or fork() depending on whether you want to wait for it to finish or not.

  • Comment on Re: Simultaneous execution of installation script