What I do is temporarily mount my software repo that lives on my NIM server.
mount -o ro,soft,vers=3 nim0X:/softwareRepo /mnt
The problem we had was that when we rebooted the nim server, the clients would get upset and hang a bit. So, I have a command that goes out to the Nim clients and unmounts "/mnt" after a period of time. The Mount command reports the date when file systems have been mounted. So, what I do is if I mount /mnt in May, it will get unmounted in July. It will be mounted for at least ~30 days and at most ~60 days. If we are going to reboot the NIM server, we will scan the systems and unmount /mnt.
# As you can see we see the date when the file system was mounted
# mount |grep mnt
nim0X //softwareRepo /mnt nfs3 Jul 02 10:18 ro,soft,vers=3
NOTE: Redhat does not report the date. I also noticed that Azure uses/mnt for storage. I do not auto-unmount on Linux.
------------------------------
Vinny G
------------------------------