diff options
author | 2015-11-28 00:02:00 +0200 | |
---|---|---|
committer | 2015-11-28 00:02:00 +0200 | |
commit | dfeb27376f11a16e0ea4f4bfd30bd5acea70f629 (patch) | |
tree | b8327c39da5b4fc293c26239100d099959d277d3 /scripts/automation/trex_control_plane/server/extended_daemon_runner.py | |
parent | 27a7103d501e9a0bf005d657cb3f7c51a72eca6b (diff) | |
parent | a9f6028ef1214bfed69efd0aff59131327a06b8e (diff) |
Merge branch 'fix_second_daemon_try_without_tty'
Diffstat (limited to 'scripts/automation/trex_control_plane/server/extended_daemon_runner.py')
-rwxr-xr-x | scripts/automation/trex_control_plane/server/extended_daemon_runner.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/automation/trex_control_plane/server/extended_daemon_runner.py b/scripts/automation/trex_control_plane/server/extended_daemon_runner.py index 734fa22e..a374db30 100755 --- a/scripts/automation/trex_control_plane/server/extended_daemon_runner.py +++ b/scripts/automation/trex_control_plane/server/extended_daemon_runner.py @@ -19,7 +19,6 @@ def daemonize_parser(parser_obj, action_funcs, help_menu): parser_obj.usage = None
parser_obj.add_argument("action", choices=action_funcs,
action="store", help=help_menu)
- return
class ExtendedDaemonRunner(runner.DaemonRunner):
@@ -76,7 +75,11 @@ class ExtendedDaemonRunner(runner.DaemonRunner): self.app = app
self.daemon_context = daemon.DaemonContext()
self.daemon_context.stdin = open(app.stdin_path, 'rt')
- self.daemon_context.stdout = open(app.stdout_path, 'w+t')
+ try:
+ self.daemon_context.stdout = open(app.stdout_path, 'w+t')
+ except IOError as err:
+ app.stdout_path = "/dev/null"
+ self.daemon_context.stdout = open(app.stdout_path, 'w+t')
self.daemon_context.stderr = open(app.stderr_path,
'a+t', buffering=0)
|