In our case, we put the commands in /etc/rc.local:
--------------(cut here)--------------------------------------
# get ipx up and running for mounting Novell disk
insmod ipx
# configure ipx
ipx_configure --auto_interface=on --auto_primary=on
# Give it a little time to get ipx configured
# (if you don't do this, the mount happens before ipx is fully configured, and fails)
sleep 15
# mount the volume
ncpmount -S NetWare_Server -V /path/to/volume -U Novell_username -P Novell_password /local_mount_point
--------------(cut here)--------------------------------------
You could just give root a .nwclient file with the appropriate permissions, as described here:
http://tldp.org/HOWTO/IPX-HOWTO.html
if you don't want the password open.
I have something analogous in my own .login with an accompanying .nwclient so that I can read/write to the Novell server as my own NetWare self.
Good luck!