commit: f289f88472e6b73579906f520d6ca77e633e061b
Author: André Erdmann <dywi <AT> mailerd <DOT> de>
AuthorDate: Mon Dec 15 23:04:38 2014 +0000
Commit: André Erdmann <dywi <AT> mailerd <DOT> de>
CommitDate: Mon Dec 15 23:04:38 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=f289f884
run rsync with /dev/null as stdin
---
roverlay/remote/rsync.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/roverlay/remote/rsync.py b/roverlay/remote/rsync.py
index 24e25f8..402d68f 100644
--- a/roverlay/remote/rsync.py
+++ b/roverlay/remote/rsync.py
@@ -82,7 +82,7 @@ def run_rsync ( cmdv, env=RSYNC_ENV ):
)
# send SIGTERM and wait,
# fall back to _stop_subprocess() if another exception is hit
- _gracefully_stop_subprocess ( proc, kill_timeout_cs=40 )
+ _gracefully_stop_subprocess ( proc, stdin=False, kill_timeout_cs=40 )
raise
except Exception: