Jeanna
2004-09-04, 17:15 PM
I'm hoping someone can help me translate this and figure out how to fix it.
For the past two days, I've gotten this message:
etc/cron.daily/makewhatis.cron:
zcat: stdout: Broken pipe
zcat: stdout: Broken pipe (repeats 12-14 times)
The cron file in questoin says:
#!/bin/bash
LOCKFILE=/var/lock/makewhatis.lock
# the lockfile is not meant to be perfect, it's just in case the
# two makewhatis cron scripts get run close to each other to keep
# them from stepping on each other's toes. The worst that will
# happen is that they will temporarily corrupt the database...
[ -f $LOCKFILE ] && exit 0
trap "{ rm -f $LOCKFILE ; exit 255; }" EXIT
touch $LOCKFILE
makewhatis -u -w
exit 0
For the past two days, I've gotten this message:
etc/cron.daily/makewhatis.cron:
zcat: stdout: Broken pipe
zcat: stdout: Broken pipe (repeats 12-14 times)
The cron file in questoin says:
#!/bin/bash
LOCKFILE=/var/lock/makewhatis.lock
# the lockfile is not meant to be perfect, it's just in case the
# two makewhatis cron scripts get run close to each other to keep
# them from stepping on each other's toes. The worst that will
# happen is that they will temporarily corrupt the database...
[ -f $LOCKFILE ] && exit 0
trap "{ rm -f $LOCKFILE ; exit 255; }" EXIT
touch $LOCKFILE
makewhatis -u -w
exit 0