ports/security/pssh/files/patch-psshlib_psshutil.py
Fernando Apesteguía 2075313502 security/pssh: update to 2.3.4
ChangeLog https://github.com/lilydjwg/pssh/blob/master/ChangeLog

* switch to the most viable fork
* Set MAINTAINER

PR:	248208
Submitted by:	timp87@gmail.com
2020-08-07 18:41:57 +00:00

14 lines
406 B
Python

--- psshlib/psshutil.py.orig 2020-04-05 06:12:36 UTC
+++ psshlib/psshutil.py
@@ -28,7 +28,10 @@ def read_host_file(path, host_glob, default_user=None,
Returns a list of (host, port, user) triples.
"""
lines = []
- f = open(path)
+ if path == "-":
+ f = open("/dev/stdin")
+ else:
+ f = open(path)
for line in f:
lines.append(line.strip())
f.close()