Re: FW: [LINUX-390] Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread John Summerfield
Ted Rodriguez-Bell wrote: Ted I think you're doing something odd; I hit "reply" and Seamonkey wanted to send the email to you. Pls check your email settings. If xargs (especially -P; I didn't know that!) doesn't work, life gets a lot more complicated. I found a discussion on Slashdot about thi

Re: Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread John Summerfield
Michael MacIsaac wrote: The code is lightly tested, almost certainly has bugs, no warranties, no license, No licence? I'm not allowed to use it? Why not a non-noncontroversial BSD-type licence? No warranty, use as you wish at your own peril. -- Cheers John -- spambait [EMAIL PROTECTED]

Re: Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread Adam Thornton
On Jul 13, 2007, at 1:46 PM, Ted Rodriguez-Bell wrote: Cfengine is a brilliant piece of work, but this isn't quite the problem for which it was built. Don't even get me started. Cfengine is fine when it's working. The problem is, its error messages range from misleading to outright pathologic

FW: [LINUX-390] Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread Ted Rodriguez-Bell
If xargs (especially -P; I didn't know that!) doesn't work, life gets a lot more complicated. I found a discussion on Slashdot about this from 2003; it mentions a Sourceforge project to make a dsh that's vanished, and something called distribulator that looks promising. See: http://ask.slashdot.o

Re: Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread Brandon Darbro
Michael MacIsaac wrote: > Does anyone have a simple wrapper around SSH to run the same command on > multiple Linuxes? Michael, I use rdist for this. With rdist, I have the ability: 1) send files to a list of hosts. 2) kick off commands to that list of hosts, can even have particular files transf

Re: Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread Michael MacIsaac
Hello, Thanks to all who replied. The info was helpful. I decided the task was too cumbersome to always type from the command line, and also straightforward enough to write some scripts. So I wrote two scripts: dssh (to issue commands) and dscp (to copy files) to multiple Linux systems. First yo

Re: Disabling QIOASSIST for SLES 10 ?

2007-07-13 Thread Ursula Braun1
Lionel, QIOASSIST has an effect on the zfcp driver and the network qeth driver, since it provides a more efficient way to exploit the QDIO-architecture when running Linux on z/VM. Unfortunately the current SLES10 Linux on System z implementation contains a bug, which may result in traffic stall co

Re: Wrapper around SSH to run command on mutliple Linuxes?

2007-07-13 Thread Jae-hwa Park
Hello, There is a small tool for this. "sshpass" http://sourceforge.net/projects/sshpass/ #!/bin/bash for i in `cat server.list` do sshpass -p passw0rd ssh [EMAIL PROTECTED] sudo faillog done Regards, Jae-hwa 2007/7/13, Michael MacIsaac <[EMAIL PROTECTED]>: Hello list, Does anyone have a si