We have an svn-repo with some mib-files. For humans it is usable to keep files in subfolders:
MIBS
+VendorA
+MIB1.txt
+MIB2.txt
+VendorB
+MibN.txt
...
Users can update or add MIBs with Tortoise clients. Servers should update their working copies themselves by cron.
But snmpd does not support subdirectories, from man-page:
/usr/local/share/snmp/mibs/
The agent will also load all files in this directory as MIBs. It will not, however, load any file that begins with a '.' or descend into subdirectories.
Is it possible to sync files from repo without containing folders?
Thanks for any feedback!