#!/bin/sh
#
# (c) 2000 Sun Microsystems, Inc.
#

# change the path to your needs
F=/tmp/clean.out

touch $F
echo ----------------------------------  >> $F 2>&1
echo I am: `id`				 >> $F 2>&1
echo Clean command called at `date`      >> $F 2>&1
echo Myargs: $*				 >> $F 2>&1
echo done				 >> $F 2>&1
echo                                     >> $F 2>&1

# Log information about our checkpoints
/usr/bin/hibinfo                         >> $F 2>&1

/usr/bin/hibrm codine_$1                 >> $F 2>&1
