20 lines
495 B
Text
20 lines
495 B
Text
|
|
||
|
$FreeBSD$
|
||
|
|
||
|
--- bin/pssh.orig
|
||
|
+++ bin/pssh
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#!/usr/bin/env python
|
||
|
+#!/usr/local/bin/python
|
||
|
# -*- Mode: python -*-
|
||
|
#
|
||
|
# Usage: pssh [OPTIONS] -h hosts.txt prog [arg0] [arg1] ..
|
||
|
@@ -141,7 +141,6 @@
|
||
|
cmdline = " ".join(args)
|
||
|
hosts, ports, users = psshutil.read_hosts(flags["hosts"])
|
||
|
psshutil.patch_users(hosts, ports, users, flags["user"])
|
||
|
- signal.signal(signal.SIGCHLD, psshutil.reaper)
|
||
|
os.setpgid(0, 0)
|
||
|
do_pssh(hosts, ports, users, cmdline, flags)
|
||
|
|