Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Generic Broadcast SSH Launcher

by QM (Parson)
on Nov 19, 2013 at 11:02 UTC ( [id://1063310]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Generic Broadcast SSH Launcher
in thread Generic Broadcast SSH Launcher

I've come back to this now, and tried N:O:P. It makes it very simple, here's the core of the script:
for my $host (@hosts) { $pssh->add_host($host, user => $user); } $pssh->push('*', 'command', { stderr_to_stdout => 1 }, $cmd ); $pssh->run;

My next problem is that I want to decorate the return from each host, to tell them apart. Perhaps something like this:

%) net.pl -c uptime kermit fozzy kermit) 10:49:37 up 3 days, 21:38, 0 users, load average: 1.00, 1.0 +1, 1.05 fozzy) 10:49:37 up 6 days, 21:08, 0 users, load average: 1.00, 1.0 +1, 1.05

I'm not sure how I would extend N:O:P to do this. Probably have to go back into N:O.

See my OP for an update, as I had a D'oh moment, and realized it was that easy.

-QM
--
Quantum Mechanics: The dreams stuff is made of

Replies are listed 'Best First'.
Re^5: Generic Broadcast SSH Launcher
by salva (Canon) on Nov 19, 2013 at 11:31 UTC
    A pipe can be attached to the output stream:
    $pssh->push('*', 'command', { stderr_to_stdout => 1, stdout_file => ['|-', 'perl', '-ne', 'pr +int "%HOST%$_\n"'] }, $cmd );
    Or the more efficient:
    require POSIX; my %fh; for my $host (@hosts) { my $pid = open my $fh, '|-'; if (not $pid) { while (<>) { print "$host) $_"; } POSIX::_exit(0); } $fh{$host} = $fh; $pssh->add_host($host, default_stderr_fh => $fh, default_stdout_fh = +> $fh); } $pssh->push('*', 'command', $cmd ); $pssh->run; close $_ for values %fh;
    Note that lines comming from stderr and stdout may arrive intermixed. A more correct solution would be to use different filters for stderr and stdout.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1063310]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-03-28 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found