[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Majordomo woes



On Wed, 7 Feb 2001, Jeff Lasman wrote:

> baltimoremd@xxxxxxxxxxxxxxx wrote:

> > admin) Cobalt logic.

Wanna see a nice example of 'cobalt logic' ?
This is from the cron updatedb script....

cd /
TMPFILE=`/bin/mktemp /tmp/locatedb.XXXXXX` || {
  echo "could not create tempfile" >&2 ; exit 1
}

...

rm -rf $TMPFILE

---

ok, so what happens if for *any* reason mktemp screws up? remember, this
is running as root...in / ...

gsh