frantisek holop wrote:
30 1 * * * /bin/sh /etc/daily 2>&1 > /var/log/daily .outmy problem is, that pfctl's output goes to the terminal and not the log file...
If you want both stdout and stderr in /var/log/daily.out, the line needs to read
... /bin/sh /etc/daily > /var/log/daily.out 2>&1 Moritz