Our small business has about 10 employee workstations and an LDAP/NFS server infrastructure. We need to deploy our proprietary application (a compiled binary) on all of the workstations. But since we may be updating our application frequently, we are looking for better options than copying a new version to each station every time an update occurs.
We are considering creating an /opt
share on the NFS server, and mounting /opt/shared
(or similar) on all of our stations. That way, when we update our application, we can simply put a new one on the NFS server rather than doing it on 10 different stations.
Is this a viable option? Are there any drawbacks in performance, security, or maintainability?