mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 17:06:32 -04:00
ChangeLog https://github.com/lilydjwg/pssh/blob/master/ChangeLog * switch to the most viable fork * Set MAINTAINER PR: 248208 Submitted by: timp87@gmail.com
14 lines
406 B
Python
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()
|