diff --git a/ajaxterm/index.cgi b/ajaxterm/index.cgi index 11b5eac46..533c51f03 100755 --- a/ajaxterm/index.cgi +++ b/ajaxterm/index.cgi @@ -33,10 +33,8 @@ $pid = fork(); if (!$pid) { chdir("$module_root_directory/ajaxterm"); untie(*STDIN); open(STDIN, "/dev/null"); - #untie(*STDERR); open(STDERR, ">/dev/null"); - untie(*STDOUT); open(STDOUT, ">/tmp/ajaxterm.out"); - untie(*STDERR); open(STDERR, ">/tmp/ajaxterm.out"); + untie(*STDOUT); open(STDOUT, ">/dev/null"); + untie(*STDERR); open(STDERR, ">/dev/null"); exec($python, "ajaxterm.py", "--port", $port, "--log"); exit(1); }