#!/bin/sh
#script to log out of Netware server
#written & copyright Andrew Stringer

#disconnect all resources
/usr/local/bin/ncpumount -a

#delete desktop icons ending with .novell, these were created at login
rm $HOME/Desktop/*.novell.desktop >/dev/null

exit 0

