Changeset 1013
- Timestamp:
- 05/29/06 15:33:51 (6 years ago)
- Files:
-
- people/ilmari/modularisation-branch/ChangeLog (modified) (1 diff)
- people/ilmari/modularisation-branch/Makefile (modified) (2 diffs)
- people/ilmari/modularisation-branch/node/SNMP.pm.in (deleted)
- people/ilmari/modularisation-branch/node/lib (added)
- people/ilmari/modularisation-branch/node/lib/Munin (added)
- people/ilmari/modularisation-branch/node/lib/Munin/Plugin (added)
- people/ilmari/modularisation-branch/node/lib/Munin/Plugin/SNMP.pm.in (added)
- people/ilmari/modularisation-branch/server/Munin.pm.in (deleted)
- people/ilmari/modularisation-branch/server/lib (added)
- people/ilmari/modularisation-branch/server/lib/Munin.pm.in (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
people/ilmari/modularisation-branch/ChangeLog
r1012 r1013 2 2 3 3 * Plugins: Add module Munin::Plugin::SNMP and convert plugins to use it. 4 * Move Perl modules to {node,server}/lib/. 4 5 * Server: Display the time period in the title of the comparison pages. 5 6 * Merge changes from 1.2.3->1.2.4. Some of the following entries may not people/ilmari/modularisation-branch/Makefile
r1012 r1013 48 48 $(INSTALL) -m 0755 build/server/munin-cgi-graph $(CGIDIR)/ 49 49 50 $(INSTALL) -m 0644 build/server/ Munin.pm $(PERLLIB)/50 $(INSTALL) -m 0644 build/server/lib/Munin.pm $(PERLLIB)/ 51 51 52 52 install-node: build install-node-non-snmp install-node-snmp … … 90 90 91 91 mkdir -p $(PERLLIB)/Munin/Plugin 92 $(INSTALL) -m 0644 build/node/ SNMP.pm $(PERLLIB)/Munin/Plugin/92 $(INSTALL) -m 0644 build/node/lib/Munin/Plugin/SNMP.pm $(PERLLIB)/Munin/Plugin/ 93 93 94 94 #TODO:
