From 5d07baf3780523d7fb8c2117aa9c63fd2fd19dfe Mon Sep 17 00:00:00 2001 From: Peter Bortas <bortas@gmail.com> Date: Wed, 14 Oct 2015 21:08:15 +0200 Subject: [PATCH] Don't suggest writing files in /. --- lib/modules/Process.pmod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/Process.pmod b/lib/modules/Process.pmod index a7368d7599..c55e5c8121 100644 --- a/lib/modules/Process.pmod +++ b/lib/modules/Process.pmod @@ -1190,7 +1190,7 @@ void daemon(int nochdir, int noclose, //! //! /* Do not change working directory. Write stdout to a file called //! access.log and stderr to error.log. */ -//! Process.daemon(1, 0, ([ "stdout": "access.log", "stderr": "error.log" ]) ); +//! Process.daemon(1, 0, ([ "stdout": "/var/log/access.log", "stderr": "/var/log/error.log" ]) ); { array(Stdio.File) opened = ({}); Stdio.File getfd(string|object f) -- GitLab