On Wed, 04 Feb 2015 15:06:41 +0100, Hrvoje Popovski wrote: > is there any problem to just put this in crontab? > > @reboot /usr/sbin/tcpdump -lnqttti pflog0 2> error.log | /usr/bin/logger > -t pf -p local2.info &
You should not try to run the command in the background since cron runs commands asyncronously. Otherwise that looks OK. - todd