On Tue, Apr 14, 2009 at 08:21, Rich Shepard <[email protected]> wrote:
> I mis-communiated the location of the problem. /usr/local/bin/pflogsumm > runs. It is normally called by /etc/cron.daily/1pflogsumm which is a shell > script that defines the variables (e.g., time period, log file location) for > the perl script. ah, then you should start the debugging there. add a "set -x" to the top of the shell script to get verbose output of every command that runs. i bet you see that some variable is not being set as expected or some 'setup' part of things is failing and causing the script to "finish" early, before calling the perl script. useful manually as well as via cron (as long as your cron daemon mails output from programs to you instead of discarding them to /dev/null or similar). _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
