2.0.0 • Published 7 years ago

multi-ssh v2.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

multi-ssh

Code Climate bitHound Score Codacy Badge Dependency Status

Run the same command on multiple servers. Authentication is left for your ssh client, presumably your passwordless authentication is set up.

CLI

The output from various servers will be nicely colored per server.

$ multi-ssh server1 server2 -- uname -a
server1: 30973
server2: 9869

API

var multiSsh = require('multi-ssh');

multiSsh(['server1', 'server2'], ['uname', '-a'])
    .on('step', function(server, stdout){
        console.log(server, 'finished with', stdout);
    })
    .on('step-error', function(server, stderr){
        console.warn(server, 'failed with', stderr);
    })
    .on('error', function(err){
        throw err;
    })
    .on('end', function(){
        console.log('Everybody done.');
    });